// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. // Support for Node 0.10 // See https://github.com/webpack/css-loader/issues/144 require('es6-promise').polyfill(); module.exports = { entry: ['whatwg-fetch', './index.js'], output: { path: __dirname + '/build', filename: 'bundle.js', publicPath: 'example/static' }, node: { fs: 'empty' }, bail: true, devtool: 'cheap-source-map', module: { rules: [ { test: /\.css$/, use: ['style-loader', 'css-loader'] }, { test: /\.json$/, use: 'json-loader' }, { test: /\.html$/, use: 'file-loader' }, { test: /\.md$/, use: 'raw-loader' }, { test: /\.(jpg|png|gif)$/, use: 'file-loader' }, { test: /\.js.map$/, use: 'file-loader' }, { test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, use: 'url-loader?limit=10000&mimetype=application/font-woff' }, { test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, use: 'url-loader?limit=10000&mimetype=application/font-woff' }, { test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, use: 'url-loader?limit=10000&mimetype=application/octet-stream' }, { test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, use: 'file-loader' }, { test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, use: 'url-loader?limit=10000&mimetype=image/svg+xml' } ], } };