diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-05-04 23:04:02 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-05-04 23:04:02 -0500 |
| commit | 7283da81b5f1f938fa407d6d3f0d5bb56e889b1b (patch) | |
| tree | b947bc4eb9221397bb5f84d8f067c7fdefe6c2c4 /postcss.config.js | |
| parent | 5b608a82bd1ebfd109520492cd6d9f54736ae862 (diff) | |
| download | immich-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.js | 6 |
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"), + ], +} |
