Browse Source

fix codeformat

scorpio 2 years ago
parent
commit
2b889d9c8d
1 changed files with 44 additions and 44 deletions
  1. 44 44
      vite.config.js

+ 44 - 44
vite.config.js

@@ -8,50 +8,50 @@ import path from 'path'
 
 // https://vitejs.dev/config/
 export default defineConfig({
-  plugins: [
-    vue(),
-    Pages({
-      dirs: [
-        { dir: 'src/page', baseRoute: '' },
-        { dir: 'src/views', baseRoute: '' }
-      ],
-      exclude: ['**/component/*.vue'] // 排除组件
-    }),
-    Components({
-      dts: true,
-      resolvers: [VantResolver()]
-    })
-  ],
-  resolve: {
-    alias: {
-      '@': path.resolve(path.resolve(), 'src')
-    }
-  },
-  minify: 'terser',
-  css: {
-    postcss: {
-      plugins: [
-        postCssPxToRem({
-          rootValue({ file }) {
-            return file.indexOf('vant') !== -1 ? 37.5 : 75
-          },
-          propList: ['*'],
-          unitPrecision: 5
+    plugins: [
+        vue(),
+        Pages({
+            dirs: [
+                { dir: 'src/page', baseRoute: '' },
+                { dir: 'src/views', baseRoute: '' }
+            ],
+            exclude: ['**/component/*.vue'] // 排除组件
+        }),
+        Components({
+            dts: true,
+            resolvers: [VantResolver()]
         })
-      ]
-    }
-  },
-  server: {
-    open: true,
-    proxy: {
-      '/api': {
-        // 正式环境地址
-        // target: 'https://dev.wutongresearch.club/api',
-        // target: 'https://prod.wutongshucloud.com/api',
-        target: 'http://192.168.31.181:8110',
-        changeOrigin: true,
-        rewrite: (path) => path.replace(/^\/api/, '')
-      }
+    ],
+    resolve: {
+        alias: {
+            '@': path.resolve(path.resolve(), 'src')
+        }
+    },
+    minify: 'terser',
+    css: {
+        postcss: {
+            plugins: [
+                postCssPxToRem({
+                    rootValue({ file }) {
+                        return file.indexOf('vant') !== -1 ? 37.5 : 75
+                    },
+                    propList: ['*'],
+                    unitPrecision: 5
+                })
+            ]
+        }
+    },
+    server: {
+        open: true,
+        proxy: {
+            '/api': {
+                // 正式环境地址
+                // target: 'https://dev.wutongresearch.club/api',
+                // target: 'https://prod.wutongshucloud.com/api',
+                target: 'http://192.168.31.181:8110',
+                changeOrigin: true,
+                rewrite: path => path.replace(/^\/api/, '')
+            }
+        }
     }
-  }
 })