Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 960 Bytes

css-preprocessors.rst

File metadata and controls

33 lines (22 loc) · 960 Bytes

CSS Preprocessors: Sass, etc. with Webpack Encore

To use the Sass, LESS or Stylus pre-processors, enable the one you want in webpack.config.js:

// webpack.config.js
// ...

Encore
    // ...

    // enable just the one you want

    // processes files ending in .scss or .sass
    .enableSassLoader()

    // processes files ending in .less
    .enableLessLoader()

    // processes files ending in .styl
    .enableStylusLoader()
;

Then restart Encore. When you do, it will give you a command you can run to install any missing dependencies. After running that command and restarting Encore, you're done!

You can also pass configuration options to each of the loaders. See the Encore's index.js file for detailed documentation.