1 Star 3 Fork 0

癸亥王/wang_calendar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
癸亥王 提交于 2023-03-10 09:32 . 增加高度prop
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import dts from 'vite-plugin-dts'
// https://vitejs.dev/config/
export default defineConfig(({ command, mode, ssrBuild }) => {
return {
plugins: [
vue(),
dts({
insertTypesEntry: true,
copyDtsFiles: true
})
],
build: {
outDir: 'lib',
lib: {
entry: resolve(__dirname, 'packages/main.ts'), // entry是必需的,因为库不能使用HTML作为入口
name: 'WangCalendar', // 暴露的全局变量
// formats: ['es'],
fileName: "index"
},
rollupOptions: {
// 确保外部化处理那些你不想打包进库的依赖
external: ['vue'],
output: {
globals: {
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
vue: 'Vue'
}
}
},
terserOptions: {
compress: {
drop_console: mode == 'production' ? true : false,
drop_debugger: mode == 'production' ? true : false
}
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/laoyaowang/wang_calendar.git
git@gitee.com:laoyaowang/wang_calendar.git
laoyaowang
wang_calendar
wang_calendar
master

搜索帮助