首页 > 建站教程 > nodejs,electron >  使用electron-vue出现Webpack ReferenceError: process is not defin正文

使用electron-vue出现Webpack ReferenceError: process is not defin

问题描述
在使用electron-vue时候,运行npn run dev,会出现下面的错误





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

方案一
简单粗暴,不知道会不会有什么影响,直接将这段代码去掉

方案二
根据别人在issue里面的写法,.electron-vue/webpack.web.config.js 和.electron-vue/webpack.renderer.config.js中的

改为
01new HtmlWebpackPlugin({
02  filename: 'index.html',
03  template: path.resolve(__dirname, '../src/index.ejs'),
04  templateParameters(compilation, assets, options) {
05    return {
06      compilation: compilation,
07      webpack: compilation.getStats().toJson(),
08      webpackConfig: compilation.options,
09      htmlWebpackPlugin: {
10        files: assets,
11        options: options
12      },
13      process,
14    };
15  },
16  minify: {
17    collapseWhitespace: true,
18    removeAttributeQuotes: true,
19    removeComments: true
20  },
21  nodeModules: false
22}),