diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-05-05 20:39:25 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-05-05 20:39:25 -0500 |
| commit | 832ee186bd8477eff88560d4fddf643ec608d4b6 (patch) | |
| tree | 2ae69d31e5dbda6b0ae0d29a048f1bfa252e85c3 /webpack.config.js | |
| parent | e943375d74ce8d48b8ad40b1a5d05437ca4f5c7f (diff) | |
| download | immich-frame-832ee186bd8477eff88560d4fddf643ec608d4b6.tar.xz immich-frame-832ee186bd8477eff88560d4fddf643ec608d4b6.zip | |
add symlinks for nav, prefix sprite ids with sprite-, add albums template
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 82f7d1d..529e222 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -15,7 +15,7 @@ module.exports = { test: /\.svg$/, loader: "svg-sprite-loader", options: { - symbolId: filePath => path.basename(filePath).replace(/_[0-9]+dp_.*/, ""), + symbolId: filePath => "sprite-" + path.basename(filePath).replace(/_[0-9]+dp_.*/, ""), }, }, ], |
