This commit is contained in:
2026-03-14 05:04:51 +03:00
commit c31e4a304d
120 changed files with 11802 additions and 0 deletions

19
vite.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: './',
build: {
outDir: 'dist',
},
server: {
port: 5173,
watch: {
ignored: ['**/extensions/**', '**/node_modules/**'],
},
},
optimizeDeps: {
entries: ['index.html', 'src/**/*.tsx', 'src/**/*.ts'],
},
})