Skip to content
Fetching contributors…
Cannot retrieve contributors at this time
18 lines (16 sloc) 475 Bytes
import HtmlWebpackPlugin from 'html-webpack-plugin';
export default {
entry: './tests/visual',
module: {
loaders: [
{ test: /\.js/, loader: 'babel', exclude: /node_modules/ },
{ test: /\.less$/, loader: 'style!css!less' },
{ test: /\.woff|\.woff2$/, loader: 'url?prefix=font/&limit=5000' },
{ test: /\.eot$|\.ttf$|\.svg$/, loader: 'file?prefix=font/' }
]
},
plugins: [
new HtmlWebpackPlugin()
],
devtool: 'eval-source-map'
};
Something went wrong with that request. Please try again.