Setup Styles
In globals.css, import the styles from the bundle
Adapt to the path to your node_modules from your globals.css
@import "../../../node_modules/@phpcreation/frontend-components-react-nextjs-bundle/dist/styles/globals.css"; In your tailwind.config.js, also add the styles from the bundle in content
const config = {
content: [
"./node_modules/@phpcreation/frontend-components-react-nextjs-bundle/**/*.{ts,tsx}",
]
}Last updated on