Tension batterie : {this.status.batteryVoltage.toFixed(3)}V
Courant : {this.status.motorCurrent.toFixed(3)}A
Puissance : {(this.status.batteryVoltage * this.status.motorCurrent).toFixed(1)}W
diff --git a/WebApp/webpack.config.js b/WebApp/webpack.config.js index 996de34..290f280 100644 --- a/WebApp/webpack.config.js +++ b/WebApp/webpack.config.js @@ -10,6 +10,10 @@ module.exports = { use: 'ts-loader', exclude: /node_modules/, }, + { + test: /\.css$/i, + use: ["style-loader", "css-loader"], + }, ], }, resolve: {