Using coldbox-elixir v3.1.11, I have just a `/reso...
# box-products
d
Using coldbox-elixir v3.1.11, I have just a
/resources/assets/js/app.js
file and
/resources/assets/css/scs-main.css
file. Coldbox-elixir seems to be creating a
/includes/css/scs-main.js
file and I obviously don’t want it to. Am I doing something weird with my config? (details in thread)
This is the entire webpack.config.js contents…
Copy code
const elixir = require('coldbox-elixir');

elixir.config.mergeBabelOptions({
	presets: ['@babel/preset-react'],
});

module.exports = elixir((mix) => {
	mix.js('app.js');
	mix.css('scs-main.css');
});