eggnstone
eggnstone
As a temporary workaround, overriding works fine for me: ``` dependency_overrides: freezed: ^3.0.4 freezed_annotation: ^3.0.0 ```
I found one way: ``` sitemap: { hostname: 'https://example.com', filter: (data: any) => { const routes = data['routes']; // do filtering return routes; } } ```
Thank you! This also solves my problem with ``` modules: [ '@funken-studio/sitemap-nuxt-3', ], sitemap: { ``` showing errors because `sitemap` is not part of `defineNuxtConfig`. But neither `exclude` nor putting...
I think `sitemap` is the old nuxt2 way. Try putting it in the modules part: ``` export default defineNuxtConfig({ modules: [ [ "@funken-studio/sitemap-nuxt-3", { hostname: "https://example.com" } ] ] }...
Also see #21.
I have the same problem: I cannot find aarlo.yaml. So when the aarlo.yaml does not exist, I have to create it? And where should I put it?
> [@eggnstone](https://github.com/eggnstone) Did you get this fixed? I remember another issue being raised but it's been a hectic couple of weeks... You solved it for me here: https://github.com/twrecked/hass-aarlo/issues/1079 Don't know...