https://github.com/boycce/html-inline-css-loader
Webpack loader that inlines or embeds CSS within HTML
https://github.com/boycce/html-inline-css-loader
Last synced: about 1 month ago
JSON representation
Webpack loader that inlines or embeds CSS within HTML
- Host: GitHub
- URL: https://github.com/boycce/html-inline-css-loader
- Owner: boycce
- License: mit
- Created: 2019-10-23T09:10:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T05:00:35.000Z (over 3 years ago)
- Last Synced: 2025-03-20T16:48:46.901Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 284 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# html-inline-css-loader
This is a webpack loader that inlines or embeds CSS within HTML using `inline-css` and `juice`.
``` javascript
rules: [
{
test: /\.html$/,
use: [
{ loader: 'file-loader' },
{ loader: 'html-inline-css-loader' }
]
}
]
```
### Roadmap
- `cpselvis/inline-html-loader`
- `hxfdarling/html-inline-assets-loader`