使用Vite部署Web应用程序时,我无法部署.js文件。遇到以下问题。
$ vite build
vite v2.8.6 building for production...
**\<script src="/index.js"\> in "/index.html" can't be bundled without type="module" attribute**
transforming...
我不能在脚本中使用**type=module
,因为我没有要导入的代码。如果我使用,则会出现错误。
如果有人能帮忙。
我尝试使用脚本type=module
,但出现错误。是否有任何方法可以在不使用type=module
的情况下使用Vite**进行部署?
1条答案
按热度按时间dw1jzc5e1#
试试这个
<script type="module" src="index.js></script>