87 lines
2.0 KiB
JavaScript
Executable File
87 lines
2.0 KiB
JavaScript
Executable File
import path from 'node:path'
|
|
import { defineConfig } from 'vite'
|
|
import useUni from '@dcloudio/vite-plugin-uni'
|
|
import useEslint from 'vite-plugin-eslint'
|
|
import useUnoCSS from 'unocss/vite'
|
|
import useUniPages from '@uni-helper/vite-plugin-uni-pages'
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
|
|
import postcssConfig from './postcss.config.js'
|
|
|
|
import {
|
|
proxyPath,
|
|
proxyPort,
|
|
proxyURL,
|
|
requestFilePath,
|
|
requestPath,
|
|
useProxy,
|
|
} from './src/configs/devServer.js'
|
|
import { homePage } from './src/configs/index.js'
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
useEslint(),
|
|
useUnoCSS(),
|
|
useUniPages({
|
|
mergePages: false,
|
|
homePage,
|
|
}),
|
|
useUni(),
|
|
AutoImport({
|
|
imports: ['vue'],
|
|
})
|
|
],
|
|
server: {
|
|
cors: true,
|
|
host: true,
|
|
port: proxyPort,
|
|
proxy: {
|
|
...(useProxy && proxyURL
|
|
? {
|
|
[`^${proxyPath}`]: {
|
|
target: `${proxyURL}${requestPath}`,
|
|
changeOrigin: true,
|
|
rewrite: path => path.replace(new RegExp(`^${proxyPath}`), ''),
|
|
},
|
|
// 解决开发环境上传图片无法直接显示的问题
|
|
[`^${requestFilePath}`]: {
|
|
target: `${proxyURL}${requestFilePath}`,
|
|
changeOrigin: true,
|
|
rewrite: path =>
|
|
path.replace(new RegExp(`^${requestFilePath}`), ''),
|
|
},
|
|
}
|
|
: {}),
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'^@': path.resolve(__dirname, './src/'),
|
|
'$uni-router': path.resolve(__dirname, './src/utils/uni-router/'),
|
|
},
|
|
},
|
|
css: {
|
|
// 修复外部 postcss.config.js 不被解析的问题
|
|
postcss: postcssConfig,
|
|
},
|
|
build: {
|
|
// sourcemap: true,
|
|
// minify: false,
|
|
// minify: 'terser',
|
|
// terserOptions: {
|
|
// compress: {
|
|
// drop_console: true,
|
|
// drop_debugger: true,
|
|
// },
|
|
// },
|
|
rollupOptions: {
|
|
// external: ['/wxcomponents'],
|
|
// output: {
|
|
// manualChunks: undefined,
|
|
// }
|
|
}
|
|
},
|
|
})
|