Initial commit
This commit is contained in:
17
Kenteken-Gen-1-main/vite.config.js
Normal file
17
Kenteken-Gen-1-main/vite.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
root: 'src/frontend',
|
||||
base: '/',
|
||||
build: {
|
||||
outDir: '../../../dist',
|
||||
emptyOutDir: true
|
||||
},
|
||||
server: {
|
||||
proxy: {
|
||||
'/api': 'http://127.0.0.1:3456'
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user