当前位置:   article > 正文

Uncaught TypeError:Cannot read properties of null (reading ‘isCE‘) at Cc (1cl-test-ui.mjs:1564:9)_cannot read properties of null (reading 'isce')

cannot read properties of null (reading 'isce')

❤️砥砺前行,不负余光,永远在路上❤️

前言

组件发布之后使用可能会遇到报错,错误信息: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'
        }
      }
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

完整的vite.config.js

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'
    }
  }
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

在这里插入图片描述
参考:https://www.bilibili.com/video/BV1s5411U7sd

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/76378
推荐阅读
相关标签
  

闽ICP备14008679号