| 1234567891011121314151617181920212223242526272829303132333435 |
- import { fileURLToPath, URL } from "node:url";
- import { defineConfig } from "vite";
- import vue from "@vitejs/plugin-vue";
- import vueJsx from "@vitejs/plugin-vue-jsx";
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [vue(), vueJsx()],
- resolve: {
- alias: {
- "@": fileURLToPath(new URL("./src", import.meta.url)),
- },
- },
- server: {
- proxy: {
- '/gw': {
- target: 'http://localhost:8088',
- changeOrigin: true,
- }
- }
- },
- css: {
- preprocessorOptions: {
- less: {
- modifyVars: {
- // "primary-color": "#1DA57A",
- // "link-color": "#1DA57A",
- },
- javascriptEnabled: true,
- },
- },
- },
- });
|