0

I know someone is going to mark this as a duplicate, but nothing on the entire web seems to be what I need.

Screenshot of webpack config and directory structure

This is almost a direct copy/paste of the example found here. This is after meticulously following along with the tutorial found here.

When I run webpack from the command line, I get the ./bundle/app.js output, but there's nothing relating to CSS anywhere.

It simply won't bundle the CSS, as far as I can tell. What in Laniakea could be the issue???

Deeply Appreciated

Cody
  • 9,785
  • 4
  • 61
  • 46

1 Answers1

1

I don't think you need the 'style-loader' prefix now, it should just be

loader: ExtractTextPlugin.extract("css-loader!less-loader") etc
aroundtheworld
  • 731
  • 1
  • 5
  • 15