@cwa/nuxt-edge 1.0.0-29365039.54dd4fb → 1.0.0-29371663.f928e92

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/dist/module.mjs CHANGED
@@ -48,7 +48,7 @@ const module = defineNuxtModule({
48
48
  sitemaps: {
49
49
  cwa: {
50
50
  sources: ["/__sitemap__/cwa-urls"],
51
- chunks: false
51
+ chunks: true
52
52
  }
53
53
  }
54
54
  }
@@ -6,7 +6,7 @@ export default defineSitemapEventHandler(async (e) => {
6
6
  return [];
7
7
  }
8
8
  const { fetcher } = useFetcher();
9
- const data = await fetcher("/_/routes");
9
+ const data = await fetcher("/_/routes?pagination=false");
10
10
  return data["member"].map((r) => {
11
11
  return {
12
12
  loc: r.path
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cwa/nuxt-edge",
3
- "version": "1.0.0-29365039.54dd4fb",
3
+ "version": "1.0.0-29371663.f928e92",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Components Web Apps Nuxt Module. UI for creating component-driven web apps with the API Components Bundle",