Vue 3 – So fügen Sie Polyfill zu ChainWebpack hinzu
P粉268654873
P粉268654873 2024-03-25 19:45:09
0
2
644

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 }

P粉268654873
P粉268654873

Antworte allen(2)
P粉797004644

Webpack 5 删除了 Webpack 4 捆绑包中包含的一些内容。

要将其全部恢复到 vue3 应用程序中,您可以使用 polyfill 插件。 来自带有 babel 的普通 create-vue-app:

> npm i node-polyfill-webpack-plugin

babel.config.js

module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}

vue.config.js

const { defineConfig } = require("@vue/cli-service");
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
module.exports = defineConfig({
  transpileDependencies: true,
  configureWebpack: {
    plugins: [new NodePolyfillPlugin()],
    optimization: {
      splitChunks: {
        chunks: "all",
      },
    },
  },
});
P粉899950720

在@Zack的帮助下,使用chainWebpack

const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')

module.exports = {
    chainWebpack: config => {
        config.plugin('polyfills').use(NodePolyfillPlugin)
    },
}
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage