반응형
.electron-vue/webpack.web.config.js
.electron-vue/webpack.renderer.config.js
두 파일을 열어 "new HtmlWebpackPlugin" 이 부분에
templateParameters 부분을 아래 내용으로 추가하거나 있을 경우 수정해주면 된다.
new VueLoaderPlugin(),
new MiniCssExtractPlugin({filename: 'styles.css'}),
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: process.env.NODE_ENV !== 'production'
? path.resolve(__dirname, '../node_modules')
: false
}),
반응형
'미립자 TIP' 카테고리의 다른 글
테슬라 인터넷 전체화면으로 즐기기 (0) | 2021.03.10 |
---|---|
파워포인트에서 작은 글씨 부드럽게 나오게 하기 (0) | 2021.02.07 |