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 /webpack.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 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 3b5b8c1..82f7d1d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,11 @@ module.exports = { rules: [ { test: /\.css$/i, - use: ["style-loader", "css-loader"], + use: [ + "style-loader", + "css-loader", + "postcss-loader", + ], }, { test: /\.svg$/, |
