Answers for "tailwind css in angular"

CSS
0

tailwind in angular

npm install -D tailwindcss
#or yarn
yarn add tailwindcss -D
Posted by: Guest on January-02-2022
0

tailwind in angular

module.exports = {
    mode: 'jit',
    purge: {
      enabled: true,
      content: ['./src/**/*.{html,ts}']
}
}
Posted by: Guest on January-02-2022
0

tailwind in angular

@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
Posted by: Guest on January-02-2022
0

tailwind in angular

module.exports = {
    mode: 'jit',
    purge: [
      // ...
    ]
    // ...
}
Posted by: Guest on January-02-2022

Browse Popular Code Answers by Language