Skip to content

Instantly share code, notes, and snippets.

@teimurjan
Created May 21, 2018 06:28
Show Gist options
  • Save teimurjan/b319207ac8d9b5cb1663f0be20d15ff5 to your computer and use it in GitHub Desktop.
Save teimurjan/b319207ac8d9b5cb1663f0be20d15ff5 to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
const webpack = require("webpack");
const path = require("path");
const buildPath = path.resolve("build");
module.exports = {
output: {
path: buildPath,
filename: "[name].[chunkhash:8].js",
chunkFilename: "[name].[chunkhash:8].chunk.js"
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment