aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.d/file.js
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2020-03-11 16:18:17 +0100
committerRobert Jaros <rjaros@finn.pl>2020-03-11 16:18:17 +0100
commit9e243a469ae6544e8cf523ad09b959f541c3f565 (patch)
treebe9c7447e221af49180c9e98434df7f988b940b8 /webpack.config.d/file.js
parentec6084c42c13a621e17b17bd40d90b5c7879f0ec (diff)
downloadkvision-9e243a469ae6544e8cf523ad09b959f541c3f565.tar.gz
kvision-9e243a469ae6544e8cf523ad09b959f541c3f565.tar.bz2
kvision-9e243a469ae6544e8cf523ad09b959f541c3f565.zip
Upgrade to Kotlin 1.3.70 + other dependencies (Coroutinse, Serialization, Spring Boot)
Major refactoring of build architecture.
Diffstat (limited to 'webpack.config.d/file.js')
-rw-r--r--webpack.config.d/file.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/webpack.config.d/file.js b/webpack.config.d/file.js
index a5c7b5da..653ca21f 100644
--- a/webpack.config.d/file.js
+++ b/webpack.config.d/file.js
@@ -1,6 +1,9 @@
config.module.rules.push(
{
- test: /\.(jpe?g|png|gif)$/i,
- loader: 'file-loader'
+ test: /\.(jpe?g|png|gif|svg)$/i,
+ loader: 'file-loader',
+ options: {
+ esModule: false,
+ },
}
-); \ No newline at end of file
+);