Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
Bugfix incorrect webpack file 🤦‍♂️ (#1825)
Browse files Browse the repository at this point in the history
* fixing wrong list separator
  • Loading branch information
paganotoni authored Nov 6, 2019
1 parent a766a32 commit 90d4c70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genny/assets/webpack/templates/webpack.config.js.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ const configurator = {
new MiniCssExtractPlugin({filename: "[name].[contenthash].css"}),
new CopyWebpackPlugin([{from: "./assets",to: ""}], {copyUnmodified: true,ignore: ["css/**", "js/**", "src/**"] }),
new Webpack.LoaderOptionsPlugin({minimize: true,debug: false}),
new ManifestPlugin({fileName: "manifest.json"})
new CleanObsoleteChunks(),
new ManifestPlugin({fileName: "manifest.json"}),
new CleanObsoleteChunks()
];

return plugins
Expand Down

0 comments on commit 90d4c70

Please sign in to comment.