summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-05-04 20:06:16 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-05-04 20:06:16 -0500
commit95ffd8bf3beebb8cb563f40c880145c40f5d2a3f (patch)
tree01df9c29f35afaa27f3213416ab36c152611caa2 /webpack.config.js
downloadimmich-frame-95ffd8bf3beebb8cb563f40c880145c40f5d2a3f.tar.xz
immich-frame-95ffd8bf3beebb8cb563f40c880145c40f5d2a3f.zip
initial commit
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js11
1 files changed, 11 insertions, 0 deletions
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",
+}