11:34:05.798 [vite]: Rollup failed to resolve import "axios" from "E:/桌面/111/live-chat-master/uniapp/chatroomwx/pages/chatroom/chatroom.vue". 11:34:05.799 This is most likely unintended because it can break your application at runtime. 11:34:05.800 If you do want to externalize this module explicitly add it to 11:34:05.800 `build.rollupOptions.external`
时间: 2024-01-31 19:04:33 浏览: 776
react移动端项目构建,react@18.2.0+react-vant+vite+axios+redux+sass
这个错误提示是因为在你的 Chatroom.vue 文件中使用了 axios 模块,但是 Rollup 找不到该模块的引用。你需要将 axios 模块添加到 build.rollupOptions.external 中。
在你的 vite.config.js 文件中添加如下代码:
```javascript
export default {
build: {
rollupOptions: {
external: ['axios']
}
}
}
```
这样就可以解决这个问题了。
阅读全文