UNPKG

react-looking-glass

Version:

A react component for magnifying images with a magnifying/looking glass effect

15 lines (12 loc) 394 B
module.exports = function override(config, env) { config.module.rules.push({ test: /\.jsx?$/, loaders: [ require.resolve('@storybook/addon-storysource/loader') ], enforce: 'pre', }); config.module.rules.push({ test: /\.(jpe?g|png|gif|woff|woff2|eot|ttf|svg)(\?[a-z0-9=.]+)?$/, loader: 'url-loader?limit=100000' }); return config };