common code
This commit is contained in:
@@ -4,5 +4,13 @@ import react from '@vitejs/plugin-react-swc'
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {'host':'0.0.0.0'}
|
||||
server: {'host':'0.0.0.0',
|
||||
'proxy':{
|
||||
'/api': {
|
||||
target: 'http://192.168.1.242:5003',
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user