cendekia / react-storybook-tailwind

Sample project using Storybook + PostCSS 8 + TailwindCSS 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Storybook + PostCSS 8 + TailwindCSS 2

Tailwind 2 and Storybook 6 has different compatibility of PostCSS - Tailwind 2 uses PostCSS 8 and Storybook 6 uses PostCSS 7.

This repository introduces some ways to make the project without compatibility problems.
(Especially about: Error: PostCSS plugin tailwindcss requires PostCSS 8.)


Create the Project

1. Create the sample project with create-react-app.

npx create-react-app storybook-tailwindcss
cd storybook-tailwindcss

2. Install tailwindcss.

yarn add -D tailwindcss@latest postcss@latest autoprefixer@latest

3. Create tailwind.config.js with npx. (-p flag generates postcss.config.js)

npx tailwindcss init -p

There will be tailwind.config.js in the root directory.

module.exports = {
  mode: "jit", // enabling Jist In Time Compiler engine
  purge: [],
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {},
  },
  variants: {
    extend: {},
  },
  plugins: [],
};

(+ You could use Tailwind JIT Compiler, which is the new feature of tailwindcss introduced in March 2021, just by adding mode: 'jit' option to the config file.).

And also postcss.config.js.

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
};

4. Create src/styles/tailwind.css.

@tailwind base;
@tailwind components;
@tailwind utilities;

5. Install storybook.

yarn add -D @storybook/react @storybook/addon-essentials @storybook/addon-actions

6. add srotybook script in package.json

"scripts": {
  "start": "react-scripts start",
  "build": "react-scripts build",
  "test": "react-scripts test",
  "eject": "react-scripts eject",
  "storybook": "start-storybook -p 6006"
},

7. Create .storybook/main.js

module.exports = {
  stories: ["../src/**/*stories.@(js|jsx|ts|tsx)"],
};

8. create .storybook/preview.js

import "../src/styles/tailwind.css";

export const parameters = {
  actions: { argTypesRegex: "^on[A-Z].*" },
};

9. Create sample component src/component/SampleBox.js, which uses tailwindcss.

import React from "react";

export const SampleBox = ({ children }) => {
  return (
    <div className="flex text-red-400 border-2 w-24 justify-center">
      {children}
    </div>
  );
};

10. Create src/component/SampleBox.stories.js, which gives children to Flex component

import React from "react";

import { SampleBox } from "./SampleBox";

export default {
  title: "Example/SampleBox",
  component: SampleBox,
};

const Template = (args) => <SampleBox {...args} />;

export const Primary = Template.bind({});
Primary.args = {
  children: "hello",
};

Bug

At this point, if you execute storybook with yarn storybook, it occurs the PostCSS error,

Error: PostCSS plugin tailwindcss requires PostCSS 8.

even if we have PostCSS in version of 8 in package.json.

"devDependencies": {
  "@storybook/addon-actions": "^6.2.9",
  "@storybook/addon-essentials": "^6.2.9",
  "@storybook/addon-links": "^6.2.9",
  "@storybook/node-logger": "^6.2.9",
  "@storybook/preset-create-react-app": "^3.1.7",
  "@storybook/react": "^6.2.9",
  "autoprefixer": "^10.2.5",
  "postcss": "^8.3.0",
  "tailwindcss": "^2.1.2"
}

Solutions

Option 1: Easiest and lightest, but not stable

Just install postcss-loader with version 4, and that's it. (postcss-loader with version 5 causes error)

yarn add -D postcss-loader@^4.1.0

Option 2: Using storybook's addon (🌟 Recommended )

Storybook supports PostCSS 8+ with @storybook/addon-postcss. Details introduced here.

1. Install addon

yarn add -D @storybook/addon-postcss

2. Edit options in .storybook/main.js to use addon

module.exports = {
  stories: ["../src/**/*stories.@(js|jsx|ts|tsx)"],
  addons: [
    "@storybook/addon-essentials",
    {
      name: "@storybook/addon-postcss",
      options: {
        postcssLoaderOptions: {
          implementation: require("postcss"),
        },
      },
    },
  ],
};

Option 3: Using PostCSS 7 🥲

You could downgrade PostCSS to version 7, with using @tailwindcss/postcss7-compat. Details introduced here.

yarn remove tailwindcss postcss autoprefixer
yarn add -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9

Use Storybook with Tailwind 2

Now you can use storybook with fully operating tailwind.

yarn storybook

image

About

Sample project using Storybook + PostCSS 8 + TailwindCSS 2


Languages

Language:JavaScript 52.5%Language:HTML 30.2%Language:CSS 17.3%