nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

commit 469b3c789c1c5cd495036c6d2d7c512ae1632890
parent b8b985e8ad20543ae5859a17f0d0821f82851287
Author: Sergej Orlov <wladimirych@gmail.com>
Date:   Wed,  4 Dec 2019 20:52:10 +0100

config: transpile node_modules with babel

Diffstat:
Mwebpack/webpack.config.js | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/webpack/webpack.config.js b/webpack/webpack.config.js @@ -109,7 +109,9 @@ const loaders = [ { test: /\.js$/, - exclude: /node_modules/, + exclude: [ + /node_modules\/css-loader/ + ], loader: 'babel-loader', options: babelConfig },