27 lines
675 B
JavaScript
27 lines
675 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
server: {
|
|
host: '0.0.0.0',
|
|
proxy: {
|
|
// Proxy API requests to the backend server
|
|
// '/api': {
|
|
// target: 'http://localhost:8080',
|
|
// changeOrigin: true, // Needed for virtual hosted sites
|
|
// secure: false, // Optional: if you are using https
|
|
// rewrite: (path) => path.replace(/^\/api/, ''),
|
|
// },
|
|
},
|
|
},
|
|
})
|