You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently working with "3.0.2-beta.17" version of Paw.js and i am trying to configure tailwindCSS into it. after configuration didn't get any error but tailwind classes not working.
I have followed below steps for implement tailwindCSS:
Add packages: tailwindcss, postcss, autoprefixer
Create new file called: "postcss.config.js"
import tailwindcss from 'tailwindcss';
import path from 'path';
import autoprefixer from 'autoprefixer';
module.exports = {
plugins: [
// ...
tailwindcss(path.resolve(__dirname, 'tailwind.config.js')),
autoprefixer,
],
};
Currently working with "3.0.2-beta.17" version of Paw.js and i am trying to configure tailwindCSS into it. after configuration didn't get any error but tailwind classes not working.
I have followed below steps for implement tailwindCSS:
The text was updated successfully, but these errors were encountered: