vulpine-fe/vite.config.ts

33 lines
680 B
TypeScript
Raw Normal View History

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