Instant-SWOT-Agent / frontend /vite.config.ts
vn6295337's picture
Initial commit: Instant SWOT Agent
0c591a7
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => ({
server: {
host: '::',
port: 8080,
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
build: {
outDir: '../static',
emptyOutDir: true,
},
}))