Skip to content

Commit

Permalink
fix image in dist
Browse files Browse the repository at this point in the history
  • Loading branch information
eromano committed May 25, 2017
1 parent c751c28 commit 81270d3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions demo-shell-ng2/config/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,28 @@ const webpackMerge = require('webpack-merge');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const commonConfig = require('./webpack.common.js');
const helpers = require('./helpers');
const CopyWebpackPlugin = require('copy-webpack-plugin');

const ENV = process.env.NODE_ENV = process.env.ENV = 'production';

const alfrescoLibs = [
'ng2-activiti-analytics',
'ng2-activiti-diagrams',
'ng2-activiti-form',
'ng2-activiti-processlist',
'ng2-activiti-tasklist',
'ng2-alfresco-core',
'ng2-alfresco-datatable',
'ng2-alfresco-documentlist',
'ng2-alfresco-login',
'ng2-alfresco-search',
'ng2-alfresco-tag',
'ng2-alfresco-upload',
'ng2-alfresco-userinfo',
'ng2-alfresco-viewer',
'ng2-alfresco-webscript'
];

module.exports = webpackMerge(commonConfig, {

devtool: 'source-map',
Expand All @@ -23,6 +42,15 @@ module.exports = webpackMerge(commonConfig, {
},

plugins: [
new CopyWebpackPlugin([
... alfrescoLibs.map(lib => {
return {
context: `node_modules/${lib}/bundles/assets/` ,
from: '**/*',
to: `assets/`
}
})
]),
new webpack.NoEmitOnErrorsPlugin(),
new webpack.optimize.UglifyJsPlugin({ // https://github.com/angular/angular/issues/10618
mangle: {
Expand Down

0 comments on commit 81270d3

Please sign in to comment.