From bb27b0b63670ab424baf4707b796417ff6506eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabrice=20PENHO=C3=8BT?= Date: Thu, 4 Feb 2021 16:31:09 +0100 Subject: [PATCH] =?UTF-8?q?Suppression=20retour=20=C3=A0=20la=20ligne=20in?= =?UTF-8?q?utile.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/webpack.config.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/front/webpack.config.js b/front/webpack.config.js index 795282d..d749ffe 100644 --- a/front/webpack.config.js +++ b/front/webpack.config.js @@ -2,7 +2,7 @@ const path = require('path'); module.exports = { - mode: "production", // pour tester les fichiers en version compressée + mode: "development", devtool: "inline-source-map", entry: { @@ -29,7 +29,7 @@ module.exports = }, output: { - filename: "./JS/prod/[name].app.js", + filename: "./JS/[name].app.js", path: path.resolve(__dirname, "public") }, module: @@ -45,7 +45,6 @@ module.exports = } } } - ] }, devServer: