Giter Site home page Giter Site logo

next-sass's Introduction

Next.js + Sass

Import .sass or .scss files in your Next.js project

Notice: this library supports simultaneously the Sass modules and Sass, it also has the ability to chunk css files for each components.

Installation

npm install --save @2012mjm/next-sass node-sass

or

yarn add @2012mjm/next-sass node-sass

Usage

The stylesheet is compiled to .next/static/css. Next.js will automatically add the css file to the HTML. In production a chunk hash is added so that styles are updated when a new version of the stylesheet is deployed.

Config

Create a next.config.js in your project

// next.config.js
const withSass = require('@2012mjm/next-sass')
module.exports = withSass({
  /* config options here */
})

Create a Sass file styles.scss, this is without Sass modules

$font-size: 50px;
.example {
  font-size: $font-size;
}

And use the module.scss extension for the Sass module, for example: styles.module.scss

Create a page file pages/index.js

import "../styles.scss"

export default () => <div className="example">Hello World!</div>

And use this for Sass module

import styles from "../styles.module.scss"

export default () => <div className={styles.example}>Hello World!</div>

With options

You can also pass a list of options to the css-loader by passing an object called cssLoaderOptions.

For instance, to enable locally scoped CSS modules, you can write:

// next.config.js
const withSass = require('@2012mjm/next-sass')
module.exports = withSass({
  cssLoaderOptions: {
    importLoaders: 1,
    localIdentName: "[local]___[hash:base64:5]",
  }
})

Extract css initialize

// next.config.js
const withSass = require('@2012mjm/next-sass')

module.exports = withSass({
  cssExtractOutput: {
    filename: {
      dev: 'static/css/[name].css',
      prod: 'static/css/[contenthash:8].css'
    },
    chunkFilename: {
      dev: 'static/css/[name].chunk.css',
      prod: 'static/css/[contenthash:16].css'
    }
  }
})

Your exported HTML will then reflect locally scoped CSS class names.

For a list of supported options, refer to the webpack css-loader README.

With SASS loader options

You can pass options from node-sass

// next.config.js
const withSass = require('@2012mjm/next-sass')
module.exports = withSass({
  sassLoaderOptions: {
    includePaths: ["absolute/path/a", "absolute/path/b"]
  }
})

PostCSS plugins

Create a next.config.js in your project

// next.config.js
const withSass = require('@2012mjm/next-sass')
module.exports = withSass({
  /* config options here */
})

Create a postcss.config.js

module.exports = {
  plugins: {
    // Illustrational
    'postcss-css-variables': {}
  }
}

Create a CSS file styles.scss the CSS here is using the css-variables postcss plugin.

:root {
  --some-color: red;
}

.example {
  /* red */
  color: var(--some-color);
}

When postcss.config.js is not found postcss-loader will not be added and will not cause overhead.

You can also pass a list of options to the postcss-loader by passing an object called postcssLoaderOptions.

For example, to pass theme env variables to postcss-loader, you can write:

// next.config.js
const withSass = require('@2012mjm/next-sass')
module.exports = withSass({
  postcssLoaderOptions: {
    parser: true,
    config: {
      ctx: {
        theme: JSON.stringify(process.env.REACT_APP_THEME)
      }
    }
  }
})

Configuring Next.js

Optionally you can add your custom Next.js configuration as parameter

// next.config.js
const withSass = require('@2012mjm/next-sass')
module.exports = withSass({
  webpack(config, options) {
    return config
  }
})

next-sass's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.