0.0.2 • Published 1 year ago

webpack-image-placeholder-plugin v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

webpack-image-placeholder-plugin

In JavaScript, import "\<width in pixel>x\<height in pixel>.png"

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.

image

Install

  npm i --save-dev webpack-image-placeholder-plugin

Webpack configuration

const ImagePlaceholderPlugin = require("webpack-image-placeholder-plugin");

module.exports = {
  // ...
  plugins: [new ImagePlaceholderPlugin()]
};
0.0.2

1 year ago

0.0.1

1 year ago