Files
managing-apps/src/Managing.WebApp/vite.config.ts
alirehmani be59c0eb43 update
2024-05-10 17:51:20 +05:00

21 lines
340 B
TypeScript

import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
export default defineConfig({
build: {
sourcemap: true,
target: 'es2020',
},
optimizeDeps: {
esbuildOptions: {
target: 'es2020',
},
},
plugins: [react()],
publicDir: 'assets',
server: {
host: true,
open: true,
},
})