Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bennyxguo/hexo-renderer-tailwindcss
- Owner: bennyxguo
- License: mit
- Created: 2019-11-18T17:18:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T17:10:07.000Z (over 3 years ago)
- Last Synced: 2024-11-07T10:08:46.314Z (3 months 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': {},
}
}
```