For questions please post on Stack Overflow and use the 'webpack' tag (http://stackoverflow.com/tags/webpack).
sokra on v5.24.3
sokra on master
5.24.3 (compare)
dependabot-preview[bot] on npm_and_yarn
chore(deps-dev): [security] bum… (compare)
Entrypoint undefined = index.html
entry: ["react-hot-loader/patch", `${SRC_DIR}/index.js`],
undefined
?
module.exports = [
{
...webpackConfig,
...resolveConfig,
...{
entry: customEntry,
plugins: enhancedPlugin,
output: customOutput
},
externals
},
{
...webpackConfig,
...resolveConfig,
...{
entry: customEntry,
plugins: enhancedPlugin,
module: { ...webpackModule, ...{ rules: enhancedRules } }
}
}
];
I actually want one normal bundling for all files and one special library bundling for one specific file. Now things are working in my favor. (It's not perfect) But I want the order to be specified.
compiler.run(callback)
code will run it in parellel?
I'm using css-loader
to import CSS files while also doing css-in-js using bs-css
after the css-loader
import has been loaded.
The problem - it seems like the css order between the two files is not deterministic. Sometimes one loads ahead, other times it's the other. Are there any ways to control where styles will be loaded onto the page?