Vue 3 + Vite + SuerMap iClient构建报错Uncaught TypeError utils.inherits is not a function
作者:张永利
一、现象
Uncaught TypeError: utils.inherits is not a function
二、问题产生原因
Elasticsearch本身就需要这些东西,以前没有问题是因为Webpack4本身就加了node模块的polyfill,而Webpack5和Vite默认是没有这个polyfill的,所以需要自己配置。
三、解决办法
增加2个地方:
1.package.json>devDependencies里增加
"events": "^3.3.0",
"util": "^0.12.4",
2.vite.config.js ,增加define配置。
export default defineConfig({
plugins: [vue()],
define: {
'process.env': {},
}
})
Vue 3 + Vite + SuerMap iClient构建报错Uncaught TypeError utils.inherits is not a function最先出现在Python成神之路。
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/25957.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论