From cd5e59b5e49b71ad5ea7a45c8a2cff82d2323260 Mon Sep 17 00:00:00 2001 From: SkandaBT <9980056379Skanda@gmail.com> Date: Thu, 8 Aug 2024 16:52:18 +0530 Subject: [PATCH] Create webpack.config.js Signed-off-by: SkandaBT <9980056379Skanda@gmail.com> --- webpack.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 webpack.config.js diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 000000000..c4500397a --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,10 @@ +const path = require('path'); + +module.exports = { + entry: './src/index.js', + output: { + filename: 'bundle.js', + path: path.resolve(__dirname, 'dist') + }, + mode: 'development' +};