GitXplorerGitXplorer
C

next-postcss

public
1 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
717902a0ccb30b1fa1e155bbb6004819a6709a2b

Brace postcss options, bump version.

CCodyJasonBennett committed 4 years ago
Unverified
c079fe2bf658977c35795b4180b6c6596d05c087

Update css loader.

CCodyJasonBennett committed 4 years ago
Unverified
a783baf3edf7557c95422540dfae51c6874e701c

Fix typo in css options.

CCodyJasonBennett committed 4 years ago
Unverified
b469cd57b4aea2dbebfd769c16851456f49a9409

Upgrade to webpack 5, expand config support.

CCodyJasonBennett committed 4 years ago
Unverified
ba7c5dd719782d0b5be6ff044249fd8ed7edd0d3

v1.1.0

CCodyJasonBennett committed 4 years ago
Unverified
b8d17f1bfd5944dc4ae4cb6891c83d942e5f47cc

Initial commit.

CCodyJasonBennett committed 4 years ago

README

The README file for this repository.

next-postcss

Import .css files in your Next.js project with PostCSS.

Installation

npm install --save next-postcss

or

yarn add next-postcss

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('next-postcss');
module.exports = withCSS({
  /* config options here */
});

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>;

Note: CSS files can not be imported into your _document.js. You can use the _app.js instead or any other page.

With CSS modules

// next.config.js
const withCSS = require('next-postcss');
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('next-postcss');
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.example}>...</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.

PostCSS plugins

Create a next.config.js in your project

// next.config.js
const withCSS = require('next-postcss');
module.exports = withCSS({
  /* config options here */
});

Create a postcss.config.js or .postcssrc

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 or .postcss are 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('next-postcss');
module.exports = withCSS({
  postcssLoaderOptions: {
    parser: true,
    postcssOptions: {
      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('next-postcss');
module.exports = withCSS({
  webpack(config, options) {
    return config;
  },
});