-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
43 lines (41 loc) · 986 Bytes
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { babel } from "@rollup/plugin-babel";
import { config } from "dotenv";
import istanbul from "vite-plugin-istanbul";
config({ debug: true });
// https://vitejs.dev/config/
export default defineConfig({
root: "src/client",
build: {
sourcemap: true,
},
plugins: [
(vue as any)(),
babel({
exclude: /node_modules/,
}),
istanbul({
cypress: true,
requireEnv: true,
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src/client/src", import.meta.url)),
},
},
server: {
proxy: {
"/data": {
target: process.env.EMULATORS_URL as string,
rewrite: (path) => path.replace("/data", "/data/data"),
},
"/auth": {
target: process.env.EMULATORS_URL as string,
rewrite: (path) => path.replace("/auth", "/auth/auth"),
},
},
},
});