mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
31 lines
575 B
JavaScript
31 lines
575 B
JavaScript
|
const webpack = require('webpack');
|
||
|
const path = require('path');
|
||
|
|
||
|
const plugins = {
|
||
|
'no-errors-plugin': new webpack.NoErrorsPlugin(),
|
||
|
};
|
||
|
|
||
|
exports.config = {
|
||
|
context: path.join(__dirname, '../'),
|
||
|
output: {
|
||
|
path: path.join(__dirname, '../static'),
|
||
|
publicPath: '/',
|
||
|
filename: '[name].js'
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.NoErrorsPlugin()
|
||
|
],
|
||
|
module: {
|
||
|
loaders: [{
|
||
|
test: /js?$/,
|
||
|
exclude: /node_modules/,
|
||
|
include: [
|
||
|
path.join(__dirname, '../src')
|
||
|
],
|
||
|
loader: 'babel-loader'
|
||
|
}]
|
||
|
}
|
||
|
};
|
||
|
|
||
|
exports.plugins = plugins;
|