問題描述贬墩,
- 開發(fā)環(huán)境
vite
報(bào) util
的引入的錯(cuò)。因?yàn)?code>mammoth 使用 require('util')
- 打包,報(bào)
undefined
的錯(cuò)晤愧。因?yàn)?code>mammoth 使用require('stream')
配置
- package.sjon
"mammoth": "^1.5.1",
"vite": "^3.0.0",
- vite.config.ts
import rollupNodePolyFill from 'rollup-plugin-node-polyfills'
export default defineConfig(({ mode, command }) => {
let aliasObj: AliasOptions = {}
// 生成環(huán)境需要的node模塊。直接寫入開發(fā)環(huán)境的 mammoth.convertToHtml 有問題
if (mode === 'production') {
aliasObj = {
events: 'rollup-plugin-node-polyfills/polyfills/events',
process: 'rollup-plugin-node-polyfills/polyfills/process-es6.js',
stream: 'rollup-plugin-node-polyfills/polyfills/stream',
}
}
return {
// ...
resolve: {
alias: {
// 兼容包使用 node的模塊
util: 'rollup-plugin-node-polyfills/polyfills/util',
...aliasObj,
},
},
rollupOptions: {
plugins: [
// Enable rollup polyfills plugin, used during production bundling
rollupNodePolyFill(),
],
},
},
}
})
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者