The Simplest Way To CONFIGURE NEXT.JS With SASS

harveyjones282

Harvey Jones

Posted on June 11, 2019

The Simplest Way To CONFIGURE NEXT.JS With SASS

Styling is a core part of designing application pages. Whenever I start working on Next.js, I usually find myself wasting some time googling how to configure SCSS in my project. So, in order to save your precious time, I have decided to pen down this issue as a reference.

Although Next.js offers a really sophisticated plugin next-sass for compiling sass files but this plugin fails to parse .eot and .woff files. So for parsing all our sass and font files, we have to add custom Webpack configuration inside next-sass.

Next-sass compiled stylesheet to .next/static/css. Next.js will automatically add the CSS to your HTML files.

Step 1: Install Dependencies

Let’s start by installing dependencies.

First, we need to install next-sass.

`npm install --save @zeit/next-sass`
Enter fullscreen mode Exit fullscreen mode

Next-sass plugin used node sass so we have to install node-sass as well.

 `npm install --save @zeit/node-sass`
Enter fullscreen mode Exit fullscreen mode

Step 2: Create the Next Config File

Now, create the next.config.js file in the root of your project directory. Next.js automatically reads all configurations from this file. So you just need to add the configurations here and export them.

Step 3: Add Customize the Configuration

Now, We have to add customized configuration inside next-sass to make it work fully and functional for compiling SASS and font files.

This configuration is capable of parsing following file types:
Sass and css files
Font files (.eot, .woff, .woff2)
Image files (.png, jpg, .gif, .svg)

const withSass = require('@zeit/next-sass');
const withCSS = require("@zeit/next-css");
module.exports = withCSS(withSass({
   webpack (config, options) {
       config.module.rules.push({
           test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
           use: {
               loader: 'url-loader',
               options: {
                   limit: 100000
               }
           }
       });

       return config;
   }
}));
Enter fullscreen mode Exit fullscreen mode

Great! You now have sass configured and I now have my permanent reference. Cheers!

💖 💪 🙅 🚩
harveyjones282
Harvey Jones

Posted on June 11, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related