aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js
diff options
context:
space:
mode:
authorMohammad <mohammad.boroon@highstreet-technologies.com>2020-11-09 15:59:34 +0100
committerMohammad <mohammad.boroon@highstreet-technologies.com>2020-11-09 15:59:48 +0100
commitda4768fe4d28822a91ee7384cbb597cd24435ee6 (patch)
tree01c7411b250bf36e26458e25f98a7589d9f3edfd /sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js
parent5bfc361adaf9bb8f71a6de08883c4a2143103ec0 (diff)
Update Link Calculator
Add Worst Month analysis to rain loss, update gui Issue-ID: CCSDK-2888 Signed-off-by: Mohammad <mohammad.boroon@highstreet-technologies.com> Change-Id: Ibac53720f252840bcfd41daa8d5edc7ddde78b0f
Diffstat (limited to 'sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js')
-rw-r--r--sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js16
1 files changed, 15 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js b/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js
index 4f2bd2ec9..3c9093c4b 100644
--- a/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js
+++ b/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js
@@ -49,7 +49,7 @@ module.exports = (env) => {
use: [{
loader: "babel-loader"
}, {
- loader: "ts-loader"
+ loader: "ts-loader"
}]
}, {
test: /\.jsx?$/,
@@ -57,6 +57,20 @@ module.exports = (env) => {
use: [{
loader: "babel-loader"
}]
+ },{
+ test: /\.scss$/,
+ include: /node_modules/,
+ use: ['style-loader', 'css-loader', 'sass-loader'],
+ },{
+ test: /\.s[ac]ss$/i,
+ use: [
+ // Creates `style` nodes from JS strings
+ 'style-loader',
+ // Translates CSS into CommonJS
+ 'css-loader',
+ // Compiles Sass to CSS
+ 'sass-loader',
+ ],
}]
},