aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/webpack.config.js
diff options
context:
space:
mode:
authorMichael DÜrre <michael.duerre@highstreet-technologies.com>2021-09-23 10:03:55 +0200
committerKAPIL SINGAL <ks220y@att.com>2021-09-23 15:37:50 +0000
commit7026ae7ee48c51e2a53d00dc7b82c41eba6b0ad2 (patch)
tree34feff14a5bb93b923c0d4ca5dcab5ed8caa0e0e /sdnr/wt/odlux/framework/webpack.config.js
parentafdde68bee53e76c79641ed1cdca4eb0b50b8f2a (diff)
fix odlux logo loading
add override for logo load Issue-ID: CCSDK-3442 Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com> Change-Id: Ie1f130459ac72f16ebcc3227fad122b5ac418651 Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/odlux/framework/webpack.config.js')
-rw-r--r--sdnr/wt/odlux/framework/webpack.config.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/framework/webpack.config.js b/sdnr/wt/odlux/framework/webpack.config.js
index b5d31c262..cef310136 100644
--- a/sdnr/wt/odlux/framework/webpack.config.js
+++ b/sdnr/wt/odlux/framework/webpack.config.js
@@ -83,12 +83,13 @@ module.exports = (env) => {
loader: "babel-loader"
}]
}, {
+ //don't minify images
test: /\.(png|gif|jpg|svg)$/,
use: [{
loader: 'url-loader',
options: {
- limit: 10000,
- name: './images/[hash].[ext]'
+ limit: 10,
+ name: './images/[name].[ext]'
}
}]
}]