From b0c869c0461741413af9e6a24f6e156717b6362f Mon Sep 17 00:00:00 2001 From: Roger Zanoni Date: Wed, 2 Nov 2022 10:16:03 +0100 Subject: Adapt the demo to use kuksa.val service - The "AUTO" element was removed because there's no compatible VSS signal. - Removed the indicators below the seats and now they work only to toggle the state of the seat warmer. - The air distribution buttons now work as a radio group as there is only one AirDistribution setting per cabin. Bug-AGL: SPEC-4599 Signed-off-by: Roger Zanoni Change-Id: Ibfaa477a7c27627ac524f39dd809b7a2195c7c9f --- webpack.config.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index 9c87768..43bc54c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -9,9 +9,11 @@ module.exports = { mode: 'production', entry: { index: './src/index.js', + PATHS: './src/js/paths.js', + SEATS: './src/js/seats.js', FANSPEED: './src/js/fan_speed.js', - CHAIR: './src/js/chair.js', - BUTTON: './src/js/buttons.js', + KUKSA: './src/js/kuksa.js', + BUTTONS: './src/js/buttons.js', TEMPERATURE: './src/js/temperature.js' }, output: { @@ -83,7 +85,6 @@ module.exports = { ] }, devServer: { - contentBase: path.join(__dirname, 'dist'), compress: true, port: 9000 } -- cgit