Skip to content

Instantly share code, notes, and snippets.

@alancasagrande
Last active November 14, 2020 16:27
Show Gist options
  • Save alancasagrande/d734b59d823b627839c1faf5a8fecf7f to your computer and use it in GitHub Desktop.
Save alancasagrande/d734b59d823b627839c1faf5a8fecf7f to your computer and use it in GitHub Desktop.
const path = require("path");
module.exports = {
mode: "production",
devtool: "source-map",
entry: {
index: "./index.js",
},
output: {
filename: "[name].js",
path: path.resolve(__dirname, "dist"),
},
plugins: [new BundleAnalyzerPlugin({ openAnalyzer: false })],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment