dykj-college-back-office-ma.../vite.config.js
吕才卓 4c530bf7f8 stu
2024-04-10 18:02:53 +08:00

46 lines
932 B
JavaScript

import { fileURLToPath, URL } from "node:url";
import path from "path";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueJsx from "@vitejs/plugin-vue-jsx";
import { viteMockServe } from "vite-plugin-mock";
// https://vitejs.dev/config/
export default defineConfig({
server: {
proxy: {
"/api": {
target: "http://192.168.1.2:8080",
changeOrigin: true,
},
},
},
plugins: [
vue(),
vueJsx(),
viteMockServe({
mockPath: "mock",
enable: true,
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
css: {
preprocessorOptions: {
less: {
modifyVars: {
hack: `true; @import (reference) "${path.resolve(
"src/style/variables.less"
)}";`,
},
math: "strict",
javascriptEnabled: true,
},
},
},
});