5 Star 13 Fork 5

Gitee 极速下载/Handle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/antfu/handle
克隆/下载
vite.config.ts 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
antfu 提交于 2022-12-15 02:20 . chore: upgrade deps
/// <reference types="vitest" />
import path from 'path'
import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import Unocss from 'unocss/vite'
export default defineConfig({
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`,
'@hankit/tools': path.resolve(__dirname, 'packages/tools/src/index.ts'),
},
},
define: {
'import.meta.vitest': 'false',
},
plugins: process.env.TEST
? []
: [
Vue(),
AutoImport({
imports: [
'vue',
'@vueuse/core',
],
dts: true,
}),
Components({
dts: true,
}),
Unocss(),
],
test: {
includeSource: ['packages/*/src/**/*.ts'],
},
build: {
chunkSizeWarningLimit: 1000,
rollupOptions: {
output: {
manualChunks: (id) => {
if (id.includes('locale'))
return 'locale'
if (id.includes('idioms.txt'))
return 'idioms'
if (id.includes('polyphones.json'))
return 'polyphones'
if (id.includes('node_modules') && !id.endsWith('.css'))
return 'vendor'
},
},
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/mirrors/Handle.git
git@gitee.com:mirrors/Handle.git
mirrors
Handle
Handle
main

搜索帮助