I have created a webpack config that has three entry points which I am trying to split when bundled. Below is my webpack.config.js
var path = require('path');
var webpack = require('webpack');
module.exports = {
mode: "development",
optimization: {
splitChunks: {
chunks: "all"
}
},
context: path.resolve('js'),
entry: {
about: './about_page.js',
home: './home_page.js',
contact: './contact_page.js'
},
output: {
path: path.resolve('build/js/'),
publicPath: '/public/assets/js/',
filename: "[name].js"
},
devServer: {
contentBase: 'public'
},
module: {
rules: [
{
enforce: "pre",
test: /\.js$/,
exclude: /node_modules/,
loader: "eslint-loader",
options: {
configFile: ".eslint.json"
}
},
{
test: /\.es6$/,
exclude: /node_modules/,
loader: "babel-loader"
}
]
},
resolve: {
extensions: ['.js', '.es6']
},
watch: true
}
I have created a webpack config that has three entry points which I am trying to split when bundled. Below is my webpack.config.js
var path = require('path');
var webpack = require('webpack');
module.exports = {
mode: "development",
optimization: {
splitChunks: {
chunks: "all"
}
},
context: path.resolve('js'),
entry: {
about: './about_page.js',
home: './home_page.js',
contact: './contact_page.js'
},
output: {
path: path.resolve('build/js/'),
publicPath: '/public/assets/js/',
filename: "[name].js"
},
devServer: {
contentBase: 'public'
},
module: {
rules: [
{
enforce: "pre",
test: /\.js$/,
exclude: /node_modules/,
loader: "eslint-loader",
options: {
configFile: ".eslint.json"
}
},
{
test: /\.es6$/,
exclude: /node_modules/,
loader: "babel-loader"
}
]
},
resolve: {
extensions: ['.js', '.es6']
},
watch: true
}
I have included the following scripts in my HTML (where home.js
is replaced with the other relevant file names). I am getting an error that shared.js
doesn't exist.
<script src="/public/assets/js/shared.js"></script>
<script src="/public/assets/js/home.js"></script>
When inspecting my page in chrome, I am able to see the individual javascript files and their contents, but none of the code from them is being executed. Each file currently has a console log inside which isn't being logged. but I've tried adding debuggers and writing to the page and still nothing gets hit.
Share Improve this question edited Aug 2, 2018 at 8:52 Sam Willis asked Aug 2, 2018 at 8:29 Sam WillisSam Willis 4,2117 gold badges44 silver badges63 bronze badges 3-
Your
Webpack Config
looks fine. Make sure you added yourbundles
in to your html. – Roopak Puthenveettil Commented Aug 2, 2018 at 8:47 - @RoopakPutheVeettil I have included the scripts in my html, see my updated question – Sam Willis Commented Aug 2, 2018 at 8:53
-
shouldnt it be
<script src="./build/js/shared.js"></script>
? – adage231 Commented Aug 2, 2018 at 9:06
2 Answers
Reset to default 5You assumed that the shared chunk would be called "shared.js" which is wrong.
Amend your config to be:
optimization: {
splitChunks: {
chunks: "all",
name: "shared"
}
},
And now your code will work.
Your issue seems to be with the way you are requiring your built js files in your html.
output: {
path: path.resolve('build/js/'),
publicPath: '/public/assets/js/',
filename: "[name].js"
}
the public path is not for the JS files but rather for static content like images and logos. Your JS files are generated under build/js/
as expected. Update your html to
<script src="./build/js/shared.js"></script>
<script src="./build/js/home.js"></script>
This should work as expected.