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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "getfilepress",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "FilePress — file-based Markdown blog engine. Link this package from a content-only site (config + posts), then run `filepress build`.",
@@ -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 }) => {