mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
46 lines
940 B
TypeScript
46 lines
940 B
TypeScript
// @ts-nocheck
|
|
import path from "path";
|
|
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
import { svgBuilder } from "./src/core/utils/svg";
|
|
|
|
function resolve(dir: string) {
|
|
return path.resolve(__dirname, ".", dir);
|
|
}
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
plugins: [vue(), vueJsx(), svgBuilder("./src/icons/svg/")],
|
|
resolve: {
|
|
alias: {
|
|
"/@": resolve("src"),
|
|
"/#": resolve("types"),
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
additionalData: "@import './src/assets/css/common.scss';",
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
port: 9000,
|
|
proxy: {
|
|
"/dev": {
|
|
target: "http://127.0.0.1:8001",
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/dev/, ""),
|
|
},
|
|
|
|
"/pro": {
|
|
target: "https://show.cool-admin.com",
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/pro/, "/api"),
|
|
},
|
|
},
|
|
},
|
|
});
|