48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import path from 'path'
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@': path.resolve(__dirname, './src'),
|
||
|
|
'@components': path.resolve(__dirname, './src/components'),
|
||
|
|
'@pages': path.resolve(__dirname, './src/pages'),
|
||
|
|
'@hooks': path.resolve(__dirname, './src/hooks'),
|
||
|
|
'@utils': path.resolve(__dirname, './src/utils'),
|
||
|
|
'@api': path.resolve(__dirname, './src/api'),
|
||
|
|
'@stores': path.resolve(__dirname, './src/stores'),
|
||
|
|
'@types': path.resolve(__dirname, './src/types'),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
port: 5173,
|
||
|
|
host: true,
|
||
|
|
proxy: {
|
||
|
|
'/api': {
|
||
|
|
target: 'http://localhost:5005',
|
||
|
|
changeOrigin: true,
|
||
|
|
},
|
||
|
|
'/ws': {
|
||
|
|
target: 'ws://localhost:5005',
|
||
|
|
ws: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
build: {
|
||
|
|
outDir: '../backend/ui',
|
||
|
|
emptyOutDir: true,
|
||
|
|
sourcemap: true,
|
||
|
|
rollupOptions: {
|
||
|
|
output: {
|
||
|
|
manualChunks: {
|
||
|
|
'react-vendor': ['react', 'react-dom'],
|
||
|
|
'ui-vendor': ['react-icons', 'clsx', 'react-hot-toast'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|