| 123456789101112131415161718192021222324252627 |
- import { fileURLToPath, URL } from "node:url";
- import { defineConfig, loadEnv } from "vite";
- import vue from "@vitejs/plugin-vue";
- // https://vitejs.dev/config/
- export default defineConfig(({ mode }) => {
- const env = loadEnv(mode, process.cwd());
- console.log(env);
- // const { VUE_APP_BASE_API } = env
- return {
- plugins: [vue()],
- resolve: {
- alias: {
- "@": fileURLToPath(new URL("./src", import.meta.url)),
- },
- },
- server: {
- port: 3000,
- proxy: {
- "/api/": {
- target: env.VITE_APP_SERVER_URL,
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/api/, ""),
- },
- },
- },
- };
- });
|