mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
19 lines
455 B
JavaScript
19 lines
455 B
JavaScript
|
const config = require('./config');
|
||
|
const webpack = require('webpack');
|
||
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
output: {
|
||
|
libraryTarget: 'commonjs2'
|
||
|
},
|
||
|
plugins: [
|
||
|
config.__plugins['no-errors-plugin'],
|
||
|
config.__plugins['loader-options-plugin']
|
||
|
],
|
||
|
module: {
|
||
|
loaders: [{
|
||
|
test: /\.css?$/,
|
||
|
loader: 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss-loader'
|
||
|
}]
|
||
|
}
|
||
|
};
|