mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-04-26 17:44:48 +00:00
Merge remote-tracking branch 'origin/develop' into improvement/documentation
* origin/develop: Update debug-lib.js (#106)
This commit is contained in:
commit
2cb6e4ef58
1 changed files with 6 additions and 1 deletions
|
|
@ -1,11 +1,16 @@
|
|||
import merge from 'webpack-merge';
|
||||
import ExtractTextPlugin from 'extract-text-webpack-plugin';
|
||||
|
||||
import prodConfig from './prod-lib';
|
||||
|
||||
export default merge(prodConfig, {
|
||||
const devConfig = merge(prodConfig, {
|
||||
output: {
|
||||
filename: '[name].debug.js'
|
||||
},
|
||||
devtool: 'source-map',
|
||||
plugins: []
|
||||
});
|
||||
|
||||
devConfig.plugins.push(new ExtractTextPlugin('[name].css'));
|
||||
|
||||
export default devConfig;
|
||||
|
|
|
|||
Loading…
Reference in a new issue