After bundling in development
mode, I get these messages in console:
webpack output is served from /
i 「wds」: Content not from webpack is served from C:\projectName\dist
i 「wds」: 404s will fallback to /index.html
In webpack.dev.config.js
I have:
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js'
},
devtool: 'inline-source-map',
devServer: {
contentBase: path.join(__dirname, 'dist'),
disableHostCheck: true,
hot: true,
open: true,
historyApiFallback: true,
port: 8081
},
Can someone explain these messages? When I check sources in console, after launching app, I have these files:
Is everything ok here?