@thinkeloquent/webpack-loaders
v0.1.8
Published
### Installation ``` npm install --save-dev @thinkeloquent/webpack-loaders ```
Readme
@thinkeloquent/webpack-loaders
Installation
npm install --save-dev @thinkeloquent/webpack-loadersusage 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: {}
})
]
};