Vue 3 - Comment ajouter Polyfill à ChainWebpack
P粉268654873
P粉268654873 2024-03-25 19:45:09
0
2
623

Avec Vue 3, comment ajouter path-browserify à vue.config.js ?

module.exports = {
    chainWebpack: config => {}
}

L'erreur suivante s'est produite lors de la compilation :

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

répondre à tous(2)
P粉797004644

Webpack 5 supprime certains contenus inclus dans le bundle Webpack 4.

Pour tout remettre dans l'application vue3, vous pouvez utiliser le plugin polyfill. De simple create-vue-app avec babel :

> 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

Avec l'aide de @Zack, en utilisant chainWebpack :

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

module.exports = {
    chainWebpack: config => {
        config.plugin('polyfills').use(NodePolyfillPlugin)
    },
}
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal