@voyage-lab/ui
v1.0.0-alpha.0
Published
------
Downloads
2
Readme
Voyage UI
Build websites even faster with components on top of Tailwind CSS
Getting started
Voyage UI can be included as a plugin into an existing Tailwind CSS project and it is supposed to help you build websites faster by having a set of web components to work with built with the utility classes from Tailwind CSS.
Install using NPM
Make sure that you have Node.js and Tailwind CSS installed.
- Install Voyage UI as a dependency using NPM by running the following command:
npm install @voyage-lab/ui- Require Voyage UI as a plugin inside the
tailwind.config.jsfile:
module.exports = {
plugins: [
require('@voyage-lab/ui/plugin')
]
}- Make sure that you add the template path to the
tailwind.config.jsfile:
module.exports = {
content: [
'node_modules/@voyage-lab/ui/**/*.esm.js',
]
}