| 123456789101112131415161718192021222324 |
- import { defineConfig } from 'vite'
- import react from '@vitejs/plugin-react'
- import path from 'path'
- export default defineConfig({
- plugins: [react()],
- build: {
- outDir: '../static',
- emptyOutDir: true,
- },
- server: {
- proxy: {
- '/api': {
- target: 'http://localhost:8000',
- changeOrigin: true,
- },
- },
- },
- resolve: {
- alias: {
- '@': path.resolve(__dirname, './src'),
- },
- },
- })
|