加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2022-08-26 08:16 . 1
// <reference types="vitest" />
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import Unocss from './config/unocss'
const rollupOptions = {
external: ['vue', 'vue-router'],
output: {
globals: {
vue: 'Vue'
},
chunkFileNames: 'static/js/[name]-[hash].js',
entryFileNames: 'static/js/[name]-[hash].js',
assetFileNames: 'static/[ext]/[name]-[hash].[ext]'
}
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), vueJsx({}), Unocss()],
test: {
// enable jest-like global test APIs
globals: true,
// simulate DOM with happy-dom
// (requires installing happy-dom as a peer dependency)
environment: 'happy-dom',
// 支持tsx组件,很关键
transformMode: {
web: [/.[tj]sx$/]
}
},
build: {
rollupOptions,
minify: 'terser', //混淆 boolean | 'terser' | 'esbuild'
sourcemap: true, // 输出单独 source文件
brotliSize: true, // 生成压缩大小报告
cssCodeSplit: true,
lib: {
entry: './src/entry.ts',
name: 'SmartyUI',
fileName: 'smarty-ui',
// 导出模块格式
formats: ['es', 'esm', 'umd', 'iife']
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化