Migrating to Vite: Uncaught TypeError: Cannot read property #39;attrs#39; of undefined(迁移到VITE:未捕获类型错误:无法读取未定义的属性)
问题描述
出于在开发环境中的性能原因,我正在尝试将一个大型应用程序从create-react-app
迁移到Vite.js。
我遵循了以下指南:https://phelipetls.github.io/posts/migrating-from-cra-to-vite/
这是详细错误:
Uncaught TypeError: Cannot read property 'attrs' of undefined
at node_modules/styled-bootstrap-grid/dist/components/Container/Container.js (Container.js:68)
at __require2 (chunk-VZ7BJMYF.js?v=f5540ad4:17)
at node_modules/styled-bootstrap-grid/dist/components/Container/index.js (index.js:27)
at __require2 (chunk-VZ7BJMYF.js?v=f5540ad4:17)
at node_modules/styled-bootstrap-grid/dist/index.js (index.js:53)
at __require2 (chunk-VZ7BJMYF.js?v=f5540ad4:17)
at dep:styled-bootstrap-grid:1
node_modules/styled-bootstrap-grid/dist/components/Container/Container.js @ Container.js:68
__require2 @ chunk-VZ7BJMYF.js?v=f5540ad4:17
node_modules/styled-bootstrap-grid/dist/components/Container/index.js @ index.js:27
__require2 @ chunk-VZ7BJMYF.js?v=f5540ad4:17
node_modules/styled-bootstrap-grid/dist/index.js @ index.js:53
__require2 @ chunk-VZ7BJMYF.js?v=f5540ad4:17
(anonymous) @ dep:styled-bootstrap-grid:1
injector.js:239
我如何调试它?有什么建议吗?
提前谢谢!
M
推荐答案
这似乎是CommonJS语法错误,因为Vite不支持CommonJS语法。您可以尝试使用Vite插件vite-plugin-commonjs
btw,
https://github.com/originjs/webpack-to-vite
这是我在转换旧项目时搜索错误消息时发现的GitHub项目。它列出了一些转换项和错误修复方法。它甚至可以一键将旧项目转换为VITE项目。太棒了,我推荐它!
这篇关于迁移到VITE:未捕获类型错误:无法读取未定义的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:迁移到VITE:未捕获类型错误:无法读取未定义的属性
基础教程推荐
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06