Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bennyxguo/hexo-renderer-tailwindcss

A hexo renderer for tailwindcss with postcss preprocessor.
https://github.com/bennyxguo/hexo-renderer-tailwindcss

hexo hexo-renderer postcss tailwindcss

Last synced: 2 months ago
JSON representation

A hexo renderer for tailwindcss with postcss preprocessor.

Awesome Lists containing this project

README

        

# hexo-renderer-tailwindcss

> A hexo renderer for tailwindcss with postcss preprocessor.

## Install

```
yarn add hexo-renderer-tailwindcss

// or

npm install hexo-renderer-tailwindcss --save
```

## Postcss config

Create `.postcssrc.js` at your Hexo root folder

```javascript
module.exports = {
from: undefined,
plugins: {
'postcss-import': {},
'tailwindcss': {},
'autoprefixer': {},
}
}
```