1.0.1 • Published 5 years ago

@zeit/next-css v1.0.1

Weekly downloads
202,117
License
MIT
Repository
github
Last release
5 years ago

Next.js + CSS

Import .css files in your Next.js project

Installation

npm install --save @zeit/next-css

or

yarn add @zeit/next-css

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.

Without CSS modules

Create a next.config.js in the root of your project (next to pages/ and package.json)

// next.config.js
const withCSS = require('@zeit/next-css')
module.exports = withCSS()

Create a CSS file style.css

.example {
  font-size: 50px;
}

Create a page file pages/index.js

import "../style.css"

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

With CSS modules

// next.config.js
const withCSS = require('@zeit/next-css')
module.exports = withCSS({
  cssModules: true
})

Create a CSS file style.css

.example {
  font-size: 50px;
}

Create a page file pages/index.js

import css from "../style.css"

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

With CSS modules and 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 withCSS = require('@zeit/next-css')
module.exports = withCSS({
  cssModules: true,
  cssLoaderOptions: {
    importLoaders: 1,
    localIdentName: "[local]___[hash:base64:5]",
  }
})

Create a CSS file styles.css

.example {
  font-size: 50px;
}

Create a page file pages/index.js that imports your stylesheet and uses the hashed class name from the stylesheet

import css from "../style.css"

const Component = props => {
  return (
    <div className={css.backdrop}>
      ...
    </div>
  )
}

export default Component

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

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

// ./pages/_document.js
import Document, { Head, Main, NextScript } from 'next/document'

export default class MyDocument extends Document {
  render() {
    return (
      <html>
        <Head>
          <link rel="stylesheet" href="/_next/static/style.css" />
        </Head>
        <body>
          <Main />
          <NextScript />
        </body>
      </html>
    )
  }
}

PostCSS plugins

Create a next.config.js in your project

// next.config.js
const withCSS = require('@zeit/next-css')
module.exports = withCSS()

Create a postcss.config.js

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

Create a CSS file style.css 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 withCSS = require('@zeit/next-css')
module.exports = withCSS({
  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 withCSS = require('@zeit/next-css')
module.exports = withCSS({
  webpack(config, options) {
    return config
  }
})
@sprucelabs/spruce-skillnext-contourmyxddafunzenstateflokafew-live-editorgintonicnextjs-setupnextjs-speed-testcomponents-for-streamingnext-skeletondeneme-button-denemecirplus-frontendpops-app-sstvpops-kids-sstvpops-plus-webspotto-locations@brudi/brudi-toolbox-nextflavory-ui@agungkes/next-sasslnd-web-ho@sotah-inc/next-local-devshopify-better-exportertodoist-landing-pages@infinitebrahmanuniverse/nolb-_zei@everything-registry/sub-chunk-1072@steersman/next-sass@economist/design-systemweb-whitelabelweb-styleguide-nextwith-reduxwith-apollowindbreaker-nextterampilalphatsx-docsua-frontuber-nextuepay-opsuepay-ops-no-auth@etidbury/ts-next-helpers@hashicorp/next-hashicorpsyomtc-site-buildertc-site-builder-betaproject-nextprismic-pocdimitar-danailov-portfoliodqwreact-unifiedreact-typescript-docssapien-v2-frontendrn-nonamern-noname-testshopify-node-appslate-landingsoya-next-scriptsspeedrunssunil-bagde.github.iostreamchamp-componentsnice-commanderooniprobe-desktop@opendocs-editor/3ditor@mies-co/next-ant@mschoening/next-sass@getgood/build-your-own-sinatra@jsweb001/blog_blue_theme_01@jsweb001/blog_blue_theme_02@jsweb001/blog_carbon_white_theme@jsweb001/blog_gray_theme_01@jsweb001/blog_gray_theme_02@jsweb001/blog_green_theme_02@jsweb001/blog_white_theme_01@jsweb001/company_profile_light_blue_theme@jsweb001/school_green_theme_light_dashed@jsweb001/school_white_theme_light@jsweb001/school_white_theme_light_dashed4m-clean-shopify-appnest-demonextjs-material-dashboardcanneriocharacter_creationnext-dssnext-fast-sassnext-landingnext-lcssnext-less-v2next-antd-aza-lessnext-bootstrapnext-but-onenext-dart-sassnext-demo-yflnext-prismic-starternext-react-app-scriptsnext-sassnext-sass-modulesnext-web-confignextjs-argon-dashboardcomponent-repo-antdreact-booking
0.2.1-canary.4

5 years ago

1.0.2-canary.2

5 years ago

1.0.2-canary.0

6 years ago

1.0.1

6 years ago

0.2.1-canary.3

6 years ago

1.0.0

6 years ago

0.2.1-canary.2

6 years ago

0.2.1-canary.1

6 years ago

0.2.0

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago