26 lines
605 B
TypeScript
26 lines
605 B
TypeScript
import react from '@vitejs/plugin-react-swc'
|
|
import path from 'path'
|
|
import { defineConfig } from 'vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src'),
|
|
'@widgets': path.resolve('src/widgets'),
|
|
'@features': path.resolve('src/features'),
|
|
'@entities': path.resolve('src/entities'),
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://192.169.0.163:8000',
|
|
changeOrigin: true,
|
|
rewrite: path => path.replace(/^\/api/, ''),
|
|
},
|
|
},
|
|
},
|
|
})
|