1 Star 1 Fork 1

wsh/patients-h5-100

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
import { fileURLToPath, URL } from 'node:url'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import Components from 'unplugin-vue-components/vite'
import { VantResolver } from 'unplugin-vue-components/resolvers'
import { createHtmlPlugin } from 'vite-plugin-html'
import { viteMockServe } from 'vite-plugin-mock'
import { configDefaults } from 'vitest/config'
// import reactivityTransform from '@vue-macros/reactivity-transform'
// https://vitejs.dev/config/
export default defineConfig({
base: './',
server: {
port: 80,
host: true
},
test: {
globals: true,
environment: 'happy-dom', // 使用 happy-dom 作为测试环境
setupFiles: './test/setup.ts', // 配置文件路径
include: [
'src/components/tests/**/*.test.ts',
'src/components/test/**/*.test.ts',
'src/utils/test/**/*.test.ts'
],
exclude: [...configDefaults.exclude, 'tests/e2e/*']
},
plugins: [
createHtmlPlugin(),
vue(),
viteMockServe({
mockPath: './src/mock',
localEnabled: true,
prodEnabled: false // 生产环境禁用 mock
}),
Components({
dts: false,
resolvers: [VantResolver({ importStyle: false })]
}),
createSvgIconsPlugin({
// 指定图标文件夹,绝对路径(NODE代码)
// eslint-disable-next-line no-undef
iconDirs: [path.resolve(process.cwd(), 'src/icons')]
})
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/comedream/patients-h5-100.git
git@gitee.com:comedream/patients-h5-100.git
comedream
patients-h5-100
patients-h5-100
master

搜索帮助