2023-11-22 15:31:58 +01:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import { qrcode } from "vite-plugin-qrcode";
|
|
|
|
import solid from "vite-plugin-solid";
|
2023-10-19 02:42:37 +02:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
// build: {
|
|
|
|
// outDir: '../server/public' // Override default outDir('dist')
|
|
|
|
// },
|
|
|
|
plugins: [solid(), qrcode()],
|
|
|
|
server: {
|
|
|
|
port: 3000,
|
|
|
|
open: true,
|
|
|
|
proxy: {
|
2023-11-22 15:31:58 +01:00
|
|
|
"/api": {
|
|
|
|
target: "http://localhost:8080/api",
|
2023-10-19 02:42:37 +02:00
|
|
|
changeOrigin: true,
|
|
|
|
secure: false,
|
2023-11-22 15:31:58 +01:00
|
|
|
rewrite: (path): string => path.replace(/^\/api/, ""),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|