From 95ffd8bf3beebb8cb563f40c880145c40f5d2a3f Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Sun, 4 May 2025 20:06:16 -0500 Subject: initial commit --- webpack.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 webpack.config.js (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..5e33203 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,11 @@ +module.exports = { + module: { + rules: [ + { + test: /\.css$/i, + use: ["style-loader", "css-loader"], + }, + ], + }, + mode: "development", +} -- cgit v1.2.3