Skip to content
Permalink
|
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.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.