dykj-college-back-office-ma.../vite.config.js

38 lines
799 B
JavaScript
Raw Normal View History

import { fileURLToPath, URL } from "node:url";
import path from "path";
2024-04-06 09:32:25 +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({
plugins: [
vue(),
vueJsx(),
viteMockServe({
mockPath: "mock",
enable: true,
}),
2024-04-06 09:32:25 +08:00
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
2024-04-06 09:32:25 +08:00
},
css: {
preprocessorOptions: {
less: {
modifyVars: {
hack: `true; @import (reference) "${path.resolve(
"src/style/variables.less"
)}";`,
2024-04-06 09:32:25 +08:00
},
math: "strict",
javascriptEnabled: true,
},
},
},
});