关于path找不到的问题
来源:4-14 业务落地:解析路由表,获取结构化数据
慕前端9269254
2022-03-14
写回答
2回答
-
qq__9614
2022-07-25
安装插件 npm i path-browserify --save
修改配置文件vue.config.js,添加如下内容:
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
......
,
// 添加如下部分
configureWebpack: {
resolve: {
fallback: { path: require.resolve('path-browserify') }
}
}
})
312022-12-07 -
Sunday
2022-03-14
你好
这应该是一个 webpack 版本的问题,可能你 webpack 版本的版本过高(课程中应该是 webpack 4.x 的版本)。
如果你一定要使用 webpack 5 的版本,那么可能需要添加一个对应的 plugin。 具体可参考: https://namespaceit.com/blog/how-fix-breaking-change-webpack-5-used-to-include-polyfills-for-nodejs-core-modules-by-default-error
022022-03-18
相似问题