123456789101112131415161718192021222324252627282930313233343536 |
- // 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: './index.js',
- output: {
- path: __dirname + '/build',
- filename: 'bundle.js',
- publicPath: 'lab/'
- },
- node: {
- fs: 'empty'
- },
- bail: true,
- devtool: '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' },
- // jquery-ui loads some images
- { test: /\.(jpg|png|gif)$/, use: 'file-loader' },
- // required to load font-awesome
- { 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' }
- ]
- }
- }
|