UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

20 lines (18 loc) 539 B
const path = require('path'); const webpackBaseConfig = require('../../docs/webpackBaseConfig'); module.exports = Object.assign({}, webpackBaseConfig, { entry: path.resolve(__dirname, 'index.js'), mode: 'development', output: { path: path.resolve(__dirname, '../../tmp'), filename: 'tests.js', }, module: Object.assign({}, webpackBaseConfig.module, { rules: webpackBaseConfig.module.rules.concat([ { test: /\.(jpg|gif|png)$/, loader: 'url-loader', }, ]), }), });