Answers for "tailwind js"

1

tailwind css npm

# Using npm
npm install tailwindcss

# Using Yarn
yarn add tailwindcss
Posted by: Guest on September-14-2020
0

tailwind js

// tailwind.config.js
module.exports = {
  purge: [],
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {},
  },
  variants: {},
  plugins: [],
}
Posted by: Guest on September-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language