96 lines
2.7 KiB
TypeScript
96 lines
2.7 KiB
TypeScript
/// <reference types="vitest" />
|
|
import { resolve } from 'node:path'
|
|
import process from 'node:process'
|
|
import uni from '@dcloudio/vite-plugin-uni'
|
|
import UniLayouts from '@uni-helper/vite-plugin-uni-layouts'
|
|
import UniManifest from '@uni-helper/vite-plugin-uni-manifest'
|
|
import UniPages from '@uni-helper/vite-plugin-uni-pages'
|
|
import UnoCSS from 'unocss/vite'
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import { defineConfig } from 'vite'
|
|
import vueDevTools from 'vite-plugin-vue-devtools'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig((configEnv) => {
|
|
return {
|
|
resolve: {
|
|
alias: [
|
|
{
|
|
find: '@',
|
|
replacement: resolve(__dirname, 'src'),
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
...(configEnv.command === 'serve'
|
|
&& configEnv.mode === 'development'
|
|
&& process.env.UNI_PLATFORM === 'h5'
|
|
? [vueDevTools()]
|
|
: []),
|
|
/**
|
|
* unocss
|
|
* @see https://github.com/antfu/unocss
|
|
* see unocss.config.ts for config
|
|
*/
|
|
UnoCSS(),
|
|
UniPages({
|
|
// 忽略页面内组件目录
|
|
exclude: ['**/components/**/*.*'],
|
|
}),
|
|
/**
|
|
* unplugin-auto-import 按需 import
|
|
* @see https://github.com/antfu/unplugin-auto-import
|
|
*/
|
|
AutoImport({
|
|
imports: [
|
|
'vue',
|
|
'pinia',
|
|
'uni-app',
|
|
],
|
|
dts: true,
|
|
dirs: [
|
|
'./src/composables',
|
|
'./src/stores',
|
|
],
|
|
vueTemplate: true,
|
|
}),
|
|
/**
|
|
* vite-plugin-uni-layouts
|
|
* @see https://github.com/uni-helper/vite-plugin-uni-layouts
|
|
*/
|
|
UniLayouts(),
|
|
/**
|
|
* unplugin-vue-components 按需引入组件
|
|
* 注意:需注册至 uni 之前,否则不会生效
|
|
* @see https://github.com/antfu/vite-plugin-components
|
|
*/
|
|
Components({
|
|
dts: 'src/components.d.ts',
|
|
}),
|
|
/**
|
|
* 使用 TypeScript 编写 uni-app 的 manifest.json。
|
|
* @see https://github.com/uni-helper/vite-plugin-uni-manifest
|
|
*/
|
|
UniManifest(),
|
|
uni(),
|
|
{ // 自定义插件禁用vite:vue插件的devToolsEnabled,强制编译 vue 模板时 inline 为 true
|
|
name: 'fix-vite-plugin-vue',
|
|
configResolved(config) {
|
|
const plugin = config.plugins.find(p => p.name === 'vite:vue')
|
|
if (plugin && plugin.api && plugin.api.options)
|
|
plugin.api.options.devToolsEnabled = false
|
|
},
|
|
},
|
|
],
|
|
/**
|
|
* Vitest
|
|
* @see https://github.com/vitest-dev/vitest
|
|
*/
|
|
test: {
|
|
environment: 'jsdom',
|
|
setupFiles: [resolve(__dirname, './test/setupTests.ts')],
|
|
},
|
|
}
|
|
})
|