@griffel/next-extraction-plugin
TypeScript icon, indicating that this package has built-in type declarations

0.1.6 • Public • Published

Next plugin to perform CSS extraction in Griffel

A plugin for NextJS 12.0.5 and newer that adds @griffel/webpack-extraction-plugin to webpack loaders pipeline.

Install

yarn add --dev @griffel/next-extraction-plugin
# or
npm install --save-dev @griffel/next-extraction-plugin

Please install @griffel/webpack-loader if you haven't done so already:

yarn add --dev @griffel/webpack-loader
# or
npm install --save-dev @griffel/webpack-loader

For more details please check README of @griffel/webpack-loader.

Usage

In next.config.js file you'll need to add the next-plugin from @griffel/webpack-extraction-plugin like so:

// next.config.js
const { withGriffelCSSExtraction } = require('@griffel/next-extraction-plugin');

module.exports = withGriffelCSSExtraction()({
  webpack(config) {
    config.module.rules.unshift({
      test: /\.(js|jsx)$/,
      exclude: /node_modules/,
      use: [
        {
          loader: '@griffel/webpack-loader',
        },
      ],
    });

    // If your project uses TypeScript
    config.module.rules.unshift({
      test: /\.(ts|tsx)$/,
      exclude: /node_modules/,
      use: [
        {
          loader: '@griffel/webpack-loader',
          options: {
            babelOptions: {
              presets: ['next/babel'],
            },
          },
        },
      ],
    });

    return config;
  },
});

Readme

Keywords

none

Package Sidebar

Install

npm i @griffel/next-extraction-plugin

Weekly Downloads

11

Version

0.1.6

License

MIT

Unpacked Size

14.8 kB

Total Files

9

Last publish

Collaborators

  • uifabricteam
  • justslone
  • levithomason
  • ling1726
  • miroslavstastny
  • layershifter