123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import { fileURLToPath, URL } from 'node:url'
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import postcsspxtoviewport from 'postcss-px-to-viewport'
- import AutoImport from 'unplugin-auto-import/vite'
- import Components from 'unplugin-vue-components/vite'
- import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
- export default defineConfig({
- server: {
- cors: true,
- proxy: {
-
- '/api': {
-
- target: 'https://cimweb.zjw.sh.cegn.cn:2007/data-business-prod/',
-
- secure: false,
- ws: true,
-
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/api/, '')
- },
- '/addressapi': {
-
- target: 'https://cimweb.zjw.sh.cegn.cn:2008/',
-
- secure: false,
- ws: true,
-
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/addressapi/, '')
- },
- '/netapi': {
-
- target: 'http://58.34.215.19:8100/',
-
- secure: false,
- ws: true,
-
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/netapi/, '')
- },
- '/zwapi': {
-
- target: 'http://10.90.9.143:9252/',
-
- secure: false,
- ws: true,
-
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/zwapi/, '')
- }
- },
- },
- plugins: [
- vue(),
- AutoImport({
- resolvers: [ElementPlusResolver()],
- }),
- Components({
- resolvers: [ElementPlusResolver()],
- }),
- ],
- build: {
- outDir: 'low_altitude_web'
- },
- resolve: {
- alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url))
- }
- },
- css: {
- preprocessorOptions: {
- scss: {
- api: "modern-compiler"
- }
- },
- postcss: {
- plugins: [
- postcsspxtoviewport({
- unitToConvert: "px",
- viewportWidth: 1080,
- unitPrecision: 6,
- propList: ["*"],
- viewportUnit: "vh",
- fontViewportUnit: "vh",
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: true,
- replace: true,
- exclude: [/node_modules/],
-
- landscape: false
- }),
- ]
- }
- },
- base: '/low_altitude/'
- })
|