summaryrefslogtreecommitdiff
path: root/postcss.config.js
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-05-04 23:04:02 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-05-04 23:04:02 -0500
commit7283da81b5f1f938fa407d6d3f0d5bb56e889b1b (patch)
treeb947bc4eb9221397bb5f84d8f067c7fdefe6c2c4 /postcss.config.js
parent5b608a82bd1ebfd109520492cd6d9f54736ae862 (diff)
downloadimmich-frame-7283da81b5f1f938fa407d6d3f0d5bb56e889b1b.tar.xz
immich-frame-7283da81b5f1f938fa407d6d3f0d5bb56e889b1b.zip
add postcss compile for css in webpack
Diffstat (limited to 'postcss.config.js')
-rw-r--r--postcss.config.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 0000000..5307961
--- /dev/null
+++ b/postcss.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ plugins: [
+ require("autoprefixer"),
+ require("postcss-nested"),
+ ],
+}