React + Vite frontend with bilingual EN/RU support, vehicle listings, detail pages with photo gallery, and dummy vehicle data. Spring Boot backend scaffold included. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|