123456789101112131415161718192021222324252627282930313233343536373839 |
- 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: {
- //
- host: '0.0.0.0',
- port: 5274,
- proxy: {
- '/gw': {
- // target: 'http://localhost:8088',
- target: 'http://172.16.1.199:8088',
- changeOrigin: true,
- }
- }
- },
- css: {
- preprocessorOptions: {
- less: {
- modifyVars: {
- "primary-color": "#0079C2",
- "primary-1": "#E4F4FF",
- },
- javascriptEnabled: true,
- },
- },
- },
- });
|