使用electron-vue出现Webpack ReferenceError: process is not defined_JavaScript_Gabriel_wei的博客-CSDN博客

问题描述

在使用electron-vue时候,运行npn run dev,会出现下面的错误
在这里插入图片描述

在这里插入图片描述

解决

没有搜索到合适的答案,在GitHub的electron-vue的issue中找到了

方案一

简单粗暴,不知道会不会有什么影响,直接将这段代码去掉
在这里插入图片描述

方案二

根据别人在issue里面的写法,.electron-vue/webpack.web.config.js.electron-vue/webpack.renderer.config.js中的
在这里插入图片描述

改为

new HtmlWebpackPlugin({
      filename: 'index.html',
      template: path.resolve(__dirname, '../src/index.ejs'),
      templateParameters(compilation, assets, options) {
        return {
          compilation: compilation,
          webpack: compilation.getStats().toJson(),
          webpackConfig: compilation.options,
          htmlWebpackPlugin: {
            files: assets,
            options: options
          },
          process,
        };
      },
      minify: {
        collapseWhitespace: true,
        removeAttributeQuotes: true,
        removeComments: true
      },
      nodeModules: false
    }),

Original url: Access
Created at: 2020-02-28 14:35:46
Category: default
Tags: none

请先后发表评论
  • 最新评论
  • 总共0条评论