diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-11 21:09:11 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-11 21:09:11 -0500 |
| commit | 5ef1d2acb24e7b9ec8566ba29ae4dd025c78d7cb (patch) | |
| tree | 979755235344bf1c7435b45e021a3369fea7dc75 /webpack.config.js | |
| parent | 9e8bc4a1e2361c4a4e4a0657df9cd893acc68682 (diff) | |
| download | immich-frame-5ef1d2acb24e7b9ec8566ba29ae4dd025c78d7cb.tar.xz immich-frame-5ef1d2acb24e7b9ec8566ba29ae4dd025c78d7cb.zip | |
stupid huge update lots of cool stuff
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 529e222..ba6756e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -8,7 +8,18 @@ module.exports = { use: [ "style-loader", "css-loader", - "postcss-loader", + { + loader: "postcss-loader", + options: { + postcssOptions: { + plugins: [ + require("autoprefixer"), + require("postcss-nested"), + require("@tailwindcss/postcss"), + ] + } + } + }, ], }, { |
