21 lines
490 B
TypeScript
21 lines
490 B
TypeScript
|
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,
|
||
|
rewrite: (path) => path.replace(/^\/media/, "/pronouns.cc")
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|