IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> supermap-vue3-leaflet编译过程中出现的问题1 -> 正文阅读

[JavaScript知识库]supermap-vue3-leaflet编译过程中出现的问题1

导入@supermap/iclient-leaflet ,b编译时出现BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.

问题内容:

ERROR in ./node_modules/elasticsearch/src/lib/host.js 11:9-31
Module not found: Error: Can't resolve 'querystring' in 'E:\PC_lijin2\coding\supermap\web\vue\leaflet\Leaflet-master\leaflet_x\node_modules\elasticsearch\src\lib'

BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.

If you want to include a polyfill, you need to:
        - add a fallback 'resolve.fallback: { "querystring": require.resolve("querystring-es3") }'
        - install 'querystring-es3'
If you don't want to include a polyfill, you can use an empty module like this:
        resolve.fallback: { "querystring": false }


ERROR in ./node_modules/elasticsearch/src/lib/log.js 7:10-24
Module not found: Error: Can't resolve 'url' in 'E:\PC_lijin2\coding\supermap\web\vue\leaflet\Leaflet-master\leaflet_x\node_modules\elasticsearch\src\lib'

BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.

If you want to include a polyfill, you need to:
        - add a fallback 'resolve.fallback: { "url": require.resolve("url/") }'
        - install 'url'
If you don't want to include a polyfill, you can use an empty module like this:
        resolve.fallback: { "url": false }


ERROR in ./node_modules/elasticsearch/src/lib/utils.js 5:16-31
Module not found: Error: Can't resolve 'util' in 'E:\PC_lijin2\coding\supermap\web\vue\leaflet\Leaflet-master\leaflet_x\node_modules\elasticsearch\src\lib'

BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.

If you want to include a polyfill, you need to:
        - add a fallback 'resolve.fallback: { "util": require.resolve("util/") }'
        - install 'util'
If you don't want to include a polyfill, you can use an empty module like this:
        resolve.fallback: { "util": false }

解决:

  • 解决报错问题1(只能解决报错,编译时忽略包,但若项目需要依赖包作为运行环境,虽能编译成功,但还是无法支持项目正常运行)

在项目的根目录下的vue.config.js配置文件下配置如下的resolve内容:

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  transpileDependencies: true,
  configureWebpack:{
    resolve: {
      fallback: {
        crypto: false,
        url: false,
        querystring: false,
        util: false
      }
    }
  }
})
  • 解决报错问题2(在编译时,将忽略的包也进行编译,同时也需要安装缺失的包),在项目的根目录下的vue.config.js配置文件下配置如下的resolve内容:
npm install querystring-es3
npm install url
npm install elasticsearch #此项可忽略
npm install util
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  transpileDependencies: true,
  configureWebpack:{
    resolve: {
      fallback: {
        //crypto: false,
        // url: false,
        url: require.resolve("url/"),
        // querystring: false,
        querysting: require.resolve("querystring-es3"),
        util: require.resolve("util/")
      }
    }
  }
})
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:26:06  更:2022-03-24 00:27:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 5:07:49-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码