加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.build.taro.vue.ts 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
eiinu 提交于 2024-03-25 18:30 . chore: prettier format (#2995)
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
export default defineConfig({
define: {
'process.env.TARO_ENV': 'process.env.TARO_ENV'
},
resolve: {
alias: [{ find: '@', replacement: path.resolve(__dirname, './src') }]
},
css: {
preprocessorOptions: {
scss: {
// example : additionalData: `@import "./src/design/styles/variables";`
// dont need include file extend .scss
additionalData: `@import "@/packages/styles/variables.scss";@import "@/sites/assets/styles/variables.scss";`
}
}
},
plugins: [
vue({
template: {
compilerOptions: {
isCustomElement: (tag) => {
return (
tag.startsWith('taro-') ||
tag.startsWith('scroll-view') ||
tag.startsWith('swiper') ||
tag.startsWith('swiper-item') ||
tag.startsWith('scroll-view') ||
tag.startsWith('picker') ||
tag.startsWith('picker-view') ||
tag.startsWith('picker-view-column')
)
},
whitespace: 'preserve'
}
}
})
],
build: {
minify: false,
target: 'es2015',
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: ['vue', 'vue-router', '@tarojs/taro', '@nutui/icons-vue-taro'],
output: {
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
globals: {
vue: 'Vue'
},
plugins: []
}
},
lib: {
entry: 'src/packages/taro.build.ts',
name: 'nutui',
fileName: () => 'nutui.umd.js',
formats: ['umd']
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化