Wie füge ich mit Vue 3 path-browserify
zu vue.config.js hinzu?
module.exports = { chainWebpack: config => {} }
Beim Kompilieren ist folgender Fehler aufgetreten:
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: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
Webpack 5 删除了 Webpack 4 捆绑包中包含的一些内容。
要将其全部恢复到 vue3 应用程序中,您可以使用 polyfill 插件。 来自带有 babel 的普通 create-vue-app:
babel.config.js
vue.config.js
在@Zack的帮助下,使用chainWebpack: