/webpack.config.js Secret
Created
January 4, 2018 21:02
-
Star
(175)
You must be signed in to star a gist -
Fork
(28)
You must be signed in to fork a gist
-
-
Save gaearon/ca6e803f5c604d37468b0091d9959269 to your computer and use it in GitHub Desktop.
Webpack code splitting configuration example
This file contains 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
module.exports = { | |
entry: { | |
main: './src/app.js', | |
}, | |
output: { | |
// `filename` provides a template for naming your bundles (remember to use `[name]`) | |
filename: '[name].bundle.js', | |
// `chunkFilename` provides a template for naming code-split bundles (optional) | |
chunkFilename: '[name].bundle.js', | |
// `path` is the folder where Webpack will place your bundles | |
path: './dist', | |
// `publicPath` is where Webpack will load your bundles from (optional) | |
publicPath: 'dist/' | |
} | |
}; |
You can use webpackChunkName
: https://webpack.js.org/api/module-methods/#magic-comments
code splitting & dynamic import
chunkFilename
Great starting off point for code-splitting!
If I could make an addendum from trying what you used, the publicPath
is what webpack in the browser will use. I was getting a confusing base path added at the beginning until I realized I had put a local path into publicPath
based on what I interpreted from line 12 (instead of a browser relative path)
React 16.14.0 + Webpack v5, React Lazy kick-off example : https://github.com/mrdulin/react-examples/tree/main/v16
@mrdulin Getting a 404 on your link
@bobber205 Fixed
wtf is this.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you. my [name] is coming as 1, 0 ... as chunk name. I am using import(). can we have specific names for the chunk file names?