vulpine-fe/vite.config.ts
2023-12-20 22:26:25 +01:00

32 lines
680 B
TypeScript

import { fileURLToPath, URL } from "node:url";
import { loadEnv, defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueJsx from "@vitejs/plugin-vue-jsx";
import yaml from "@modyfi/vite-plugin-yaml";
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const { INSTANCE } = loadEnv(mode, process.cwd(), "");
return {
plugins: [vue(), vueJsx(), yaml()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
server: {
proxy: {
"/api": {
target: INSTANCE,
changeOrigin: true,
},
"/oauth": {
target: INSTANCE,
changeOrigin: true,
},
},
},
};
});