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: 6 days ago
JSON representation
A hexo renderer for tailwindcss with postcss preprocessor.
- Host: GitHub
- URL: https://github.com/bennyxguo/hexo-renderer-tailwindcss
- Owner: bennyxguo
- License: mit
- Created: 2019-11-18T17:18:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T17:10:07.000Z (almost 4 years ago)
- Last Synced: 2025-06-16T23:06:00.401Z (15 days ago)
- Topics: hexo, hexo-renderer, postcss, tailwindcss
- Language: JavaScript
- Size: 64.5 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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': {},
}
}
```