我的 vite 配置看起来像这样。我想要两个入口点,正如您在 build.lib.entry 中看到的那样本地测试。
// vite.config.js
const path = require('path')
module.exports = {
build: {
lib: {
entry: path.resolve(__dirname, 'src/main.js'),
name: 'MyLib'
},
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
// into your library
external: ['vue'],
output: {
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
vue: 'Vue'
}
}
}
}
}
我尝试在 module.exports 中添加以下代码,但没有成功。
entry: path.resolve(__dirname, 'src/app.js'),