summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework
diff options
context:
space:
mode:
authorMichael DÜrre <michael.duerre@highstreet-technologies.com>2021-09-23 10:03:55 +0200
committerMichael DÜrre <michael.duerre@highstreet-technologies.com>2021-09-23 10:04:08 +0200
commit0eaf2d56a8ac8de275cd80d3db38c02f110faa30 (patch)
treea63aad5f5923ecc9a3bd947d89b39fdf0a3c8eae /sdnr/wt/odlux/framework
parent2cdb55c097ff15da745d209c9b9f8a11f5e713f2 (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')
-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]'
}
}]
}]