报错信息为:
Uncaught ReferenceError: exports is not defined
编译后的代码中包含
Object.defineProperty(exports,"__esModule",{value:!0})
谷歌了一下,说是不兼容 require 和 import 导致的,有看没懂……
但找到一个解决办法,就是在页面里追加一段代码:
<script> var exports = {}; </script>
但问题又来了:
Cannot find module './Index.b211c312.js'
报错的意思很简单,但就是不知道怎么解决,生成的文件是这样的:
│ index.html
└─_assets
Index.b211c312.js
index.fa062449.js
style.032a3e7d.css
在 index.html 中:
<script type="module" src="./_assets/index.fa062449.js"></script>
在 index.fa062449.js 中:
require("./Index.b211c312.js")
同级目录下就是找不到……
源码中只包含了必要的代码,请大家帮忙看看怎么解决
1
nbhaohao 2021-01-22 17:42:54 +08:00
生成的代码的模块化方式,浏览器不认识。
参考下这个链接,https://github.com/vitejs/vite/issues/779#issuecomment-706469733 我是通过搜索 vite es5,看到这个结果,https://github.com/vitejs/vite/issues/875,然后得到上面的链接的。 |
2
zeronofreya OP @nbhaohao 谢谢,我看一下
|