0.1.8 • Published 7 years ago

@thinkeloquent/webpack-loaders v0.1.8

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

@thinkeloquent/webpack-loaders

Installation

npm install --save-dev @thinkeloquent/webpack-loaders

usage ES5

import { imageUrlLoader } from '@thinkeloquent/webpack-loaders/lib/image-url-loader';
import path from 'path';

const include = path.join(__dirname);
const exclude = /node_modules/;

module.exports = {
  rules: [
    imageUrlLoader({
      include,
      exclude,
      options: {}
    })
  ]
};