pronounsfu/frontend/vite.config.ts

24 lines
547 B
TypeScript
Raw Normal View History

2023-03-09 08:08:43 -08:00
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [sveltekit()],
server: {
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
"/media": {
target: "http://localhost:9000",
changeOrigin: true,
2023-03-10 16:36:30 -08:00
rewrite: (path) => path.replace(/^\/media/, "/pronouns.cc"),
2023-03-09 08:08:43 -08:00
},
},
},
2023-03-10 16:36:30 -08:00
ssr: {
noExternal: ["@popperjs/core"],
},
2023-03-09 08:08:43 -08:00
});