❤️砥砺前行,不负余光,永远在路上❤️
前言
组件发布之后使用可能会遇到报错,错误信息:Uncaught TypeError:Cannot read properties of null (reading ‘isCE’)
at Cc (1cl-test-ui.mjs:1564:9)
一、如何解决
在vite.config.js中添加代码
rollupOptions: { //解决isCE
external: ["vue"],
output: {
globals: {
vue: 'vue'
}
}
},
完整的vite.config.js文章来源:https://www.toymoban.com/news/detail-610844.html
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
build: {
rollupOptions: { //解决isCE
external: ["vue"],
output: {
globals: {
vue: 'vue'
}
}
},
lib: {
entry: "./packages/index.js",
name: 'lcl-test-ui'
}
}
})
参考:https://www.bilibili.com/video/BV1s5411U7sd文章来源地址https://www.toymoban.com/news/detail-610844.html
到了这里,关于Uncaught TypeError:Cannot read properties of null (reading ‘isCE‘) at Cc (1cl-test-ui.mjs:1564:9)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!