Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.1 KB

README.md

File metadata and controls

49 lines (33 loc) · 1.1 KB

FrostUI is a component library built upon tailwindcss (Utility first CSS framework)

Getting Started

Install using NPM / Yarn

Make sure you have installed Node.js and Tailwind CSS and properly setup it

  1. Install frostui dependency as the following command.

    npm install @frostui/tailwindcss
    yarn add @frostui/tailwindcss
  2. Require frostui js and plugin added to the tailwind.config.js file

    module.exports = {
    
      content: [
        "./node_modules/@frostui/tailwindcss/**/*.js"
      ]
    
    }
    module.exports = {
    
      plugins: [
        require('@frostui/tailwindcss/plugin')
      ]
    
    }
  3. Include the main js file to work all components

    <script src="./node_modules/@frostui/tailwindcss/frostui.js"></script>

FrostUI is Open Source project and licensed under MIT.

Thanks to Tailwind CSS