2024-04-06 09:55:10 +08:00
|
|
|
import { fileURLToPath, URL } from "node:url";
|
|
|
|
import path from "path";
|
2024-04-06 09:32:25 +08:00
|
|
|
|
2024-04-06 09:55:10 +08:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
|
|
import { viteMockServe } from "vite-plugin-mock";
|
2024-04-06 09:32:25 +08:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2024-04-06 18:20:58 +08:00
|
|
|
server: {
|
|
|
|
proxy: {
|
|
|
|
"/api": {
|
2024-04-07 17:36:32 +08:00
|
|
|
target: "http://192.168.1.10:8080",
|
2024-04-06 18:20:58 +08:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-04-06 09:32:25 +08:00
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
vueJsx(),
|
|
|
|
viteMockServe({
|
2024-04-06 09:55:10 +08:00
|
|
|
mockPath: "mock",
|
|
|
|
enable: true,
|
|
|
|
}),
|
2024-04-06 09:32:25 +08:00
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
2024-04-06 09:55:10 +08:00
|
|
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
|
|
|
},
|
2024-04-06 09:32:25 +08:00
|
|
|
},
|
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
less: {
|
|
|
|
modifyVars: {
|
2024-04-06 09:55:10 +08:00
|
|
|
hack: `true; @import (reference) "${path.resolve(
|
|
|
|
"src/style/variables.less"
|
|
|
|
)}";`,
|
2024-04-06 09:32:25 +08:00
|
|
|
},
|
2024-04-06 09:55:10 +08:00
|
|
|
math: "strict",
|
|
|
|
javascriptEnabled: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|