An open API service indexing awesome lists of open source software.

https://github.com/haoranpb/vitepress-tailwind-documentation

Simplified Tailwindcss documentation site clone
https://github.com/haoranpb/vitepress-tailwind-documentation

clone documentation tailwindcss vitepress

Last synced: 11 months ago
JSON representation

Simplified Tailwindcss documentation site clone

Awesome Lists containing this project

README

          

# Simplified Tailwindcss documentation site clone

Build with [VitePress](https://vitepress.vuejs.org) and [Tailwind CSS](https://tailwindcss.com)

## Why?

I love building elegant websites, especially when both design and css are taken care of :stuck_out_tongue_winking_eye:. Inspired by [vuejs/blog](https://github.com/vuejs/blog).

## What's missing?

As you can see on the [website](https://vitepress-tailwind-clone.netlify.app), many functionalities and styles are not implemented for simplicity.

## Development

### Add a new document

Put your document inside `docs` folder. Note: nested directories are not supported.

And then edit `.vitepress/config.js`

```js
module.exports = {
...
themeConfig: {
...
collections: {
'New category': [
'your document',
],
...
},
},
}
```

### Configuration

Take a look at [VitePress](https://vitepress.vuejs.org/guide/customization.html)'s documentation might help you further understand the structure.

## License

[MIT](https://github.com/haoranpb/vitepress-tailwind-documentation/blob/main/LICENSE)