2026-04-19 19:15:01 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [
|
|
|
|
|
react()
|
|
|
|
|
],
|
|
|
|
|
server: {
|
|
|
|
|
host: true,
|
|
|
|
|
port: 5173,
|
|
|
|
|
proxy: {
|
|
|
|
|
'/api': {
|
|
|
|
|
target: 'http://localhost:3000',
|
|
|
|
|
changeOrigin: true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
outDir: 'dist',
|
2026-05-15 12:02:24 +08:00
|
|
|
sourcemap: false,
|
|
|
|
|
modulePreload: {
|
|
|
|
|
resolveDependencies: () => []
|
|
|
|
|
},
|
|
|
|
|
cssTarget: 'chrome61',
|
|
|
|
|
target: 'chrome61',
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
manualChunks: undefined
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
esbuild: {
|
|
|
|
|
target: 'chrome61'
|
2026-04-19 19:15:01 +08:00
|
|
|
}
|
|
|
|
|
})
|