-
-
Couldn't load subscription status.
- Fork 1.5k
Closed
Labels
Description
webpack.config.js can be an array of webpack config objects like so:
module.exports = [
{
name: 'configurator',
},
{
name: 'scene',
}
];Currently, I have to append this to my config file:
module.exports.resolve = {
extensions: [
'',
'.jsx',
'.js',
],
};... which shouldn't be necessary. Please add support for multiple webpack configs.