webpack-image-placeholder-plugin
Version:
webpack plugin that generate placeholder image from scratch
32 lines (22 loc) • 732 B
Markdown
"\<width in pixel\>x\<height in pixel\>.png"
```javascript
import placeholder from "200x300.png";
const element = document.createElement("img");
element.src = placeholder;
document.body.appendChild(element);
```
This will generate image with specific width and height automatically.

```bash
npm i --save-dev webpack-image-placeholder-plugin
```
```javascript
const ImagePlaceholderPlugin = require("webpack-image-placeholder-plugin");
module.exports = {
// ...
plugins: [new ImagePlaceholderPlugin()]
};
```
In JavaScript, import