DEV Community

Discussion on: How to configure Tailwindcss for Svelte and Storybook (2020 Update)

Collapse
 
sagato profile image
Sagato

Hi Linh thx for the article. I don't get where u import the globals.css to storybook. Would u mind explain? Greets!

Collapse
 
gyurielf profile image
gyurielf

You should put into preview .cjs/js, right below the other imports.
I hope it helps.

// .storybook/preview.cjs

import '../static/base-style.css';

export const parameters ={
..
}