getfilepress 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -192,6 +192,10 @@ export default defineConfig(async () => {
|
|
|
192
192
|
if (pathMounts.some((m) => path === m.url || path.startsWith(`${m.url}/`))) {
|
|
193
193
|
return;
|
|
194
194
|
}
|
|
195
|
+
// Layout always links these; sites may ship only one.
|
|
196
|
+
if (path === '/favicon.png' || path === '/favicon.svg') {
|
|
197
|
+
return;
|
|
198
|
+
}
|
|
195
199
|
throw new Error(message);
|
|
196
200
|
},
|
|
197
201
|
handleUnseenRoutes: ({ routes }) => {
|