A highly scalable & plugable, Progressive Web Application Framework with the best Developer Experience. This framework utilizes the power of React with Webpack and is build on top of webpack/tapable for unlimited extendability.
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';
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:
module.exports = { plugins: [ // ... tailwindcss(path.resolve(__dirname, 'tailwind.config.js')), autoprefixer, ], };
module.exports = { content: ['./src/*/.{js,jsx,ts,tsx}'], theme: { colors: { red: '#ff0000', }, extend: {}, }, plugins: [], };
@tailwind base; @tailwind components; @tailwind utilities;