Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Adding CSS Loaders

Sass loader

For the Sass loader would the order look like so : loader: 'style-loader!css-loader!sass-loader' ?

Thank you!

2 Answers

Tom Geraghty
Tom Geraghty
24,174 Points

I think I figured it out. It looks like using a "loader" (singular) on modules allows you to pipe (using !) results from one loader into the next. Whereas using the plural "loaders" in your webpack.config.js file will let you use an array with the same results (processed data is piped into the next processor in the array). Two styles of writing them as follows:

From Guil's Adding CSS Loaders video we see:

module: {
  loaders: [
    {
      test: /\.css$/,
      loader: โ€œstyle-loader!css-loaderโ€
    }
  ]
}

Hopefully it's safe to assume adding Sass would mean adjusting that one line to:

loader: โ€œstyle-loader!css-loader!sass-loaderโ€

Or the other way we see in Isaac's Adding Styles to Your Application video like this:

module: {
  loaders: [
    {
      test: /\.css$/,
      loaders: ['style-loader', 'css-loader', 'sass-loader']
    }
  ]
}

So it looks like they should both work. There might be an industry standard but it appears like this is one of those instances where individual preference in how you write your code is ok. Anyone feel free to correct me if I'm wrong.