Created
May 21, 2018 06:28
-
-
Save teimurjan/b319207ac8d9b5cb1663f0be20d15ff5 to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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