Onborda setup

Installation

Getting started with Onborda is fast and simple. Let's start by installing our package using one of the commands below.

# pnpm
pnpm add onborda
# yarn
yarn add onborda

Tailwind config

Tailwind CSS will need to scan the node module in order to include the classes used. See configuring source paths for more information about this topic.

const config: Config = {
  content: [
    './node_modules/onborda/dist/**/*.{js,ts,jsx,tsx}' // Add this
  ]
}