mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
|
const webpack = require('webpack');
|
||
|
const Config = require('./webpack.config');
|
||
|
|
||
|
Config.plugins = [
|
||
|
new webpack.ProvidePlugin({
|
||
|
jQuery: 'jQuery',
|
||
|
$: 'jQuery',
|
||
|
}),
|
||
|
];
|
||
|
Config.devtool = 'source-map';
|
||
|
|
||
|
module.exports = Config;
|