From 0019fdec26cdcd8c5ae83526dfef71b74a7599a8 Mon Sep 17 00:00:00 2001 From: Pablo Diehl Date: Wed, 9 Oct 2024 14:42:58 -0300 Subject: [PATCH 1/4] fix(templates/hugo): Update hugo-boilerplate info.json --- templates/hugo/hugo-static/info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/hugo/hugo-static/info.json b/templates/hugo/hugo-static/info.json index 48fbd472..cc12c9d9 100644 --- a/templates/hugo/hugo-static/info.json +++ b/templates/hugo/hugo-static/info.json @@ -3,5 +3,5 @@ "message": "Deploy new Hugo applications to run directly on the edge", "preset": "hugo", "mode": "deliver", - "path": "/hugo-boilerplate" + "path": "/hugo-static" } From 6a98136e9ac64712c2f51b88464d29ad07afe009 Mon Sep 17 00:00:00 2001 From: Pablo Diehl Date: Wed, 9 Oct 2024 14:44:46 -0300 Subject: [PATCH 2/4] fix(templates/hugo): Update hugo-boilerplate empty file --- .../themes/ananke/layouts/partials/head-additions.html | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/hugo/hugo-static/themes/ananke/layouts/partials/head-additions.html b/templates/hugo/hugo-static/themes/ananke/layouts/partials/head-additions.html index e69de29b..06adf8bb 100644 --- a/templates/hugo/hugo-static/themes/ananke/layouts/partials/head-additions.html +++ b/templates/hugo/hugo-static/themes/ananke/layouts/partials/head-additions.html @@ -0,0 +1 @@ + From 68eda81fe49cd3f23f1876058deae6953e504ebe Mon Sep 17 00:00:00 2001 From: Pablo Diehl Date: Thu, 10 Oct 2024 10:24:35 -0300 Subject: [PATCH 3/4] fix(templates/astro/astro-commerce): Update _variables.scss Update empty files for astro-commerce template. --- .../assets/scss/astro-ecommerce/custom/_variables.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/astro/astro-ecommerce/assets/scss/astro-ecommerce/custom/_variables.scss b/templates/astro/astro-ecommerce/assets/scss/astro-ecommerce/custom/_variables.scss index e69de29b..34fc5b91 100644 --- a/templates/astro/astro-ecommerce/assets/scss/astro-ecommerce/custom/_variables.scss +++ b/templates/astro/astro-ecommerce/assets/scss/astro-ecommerce/custom/_variables.scss @@ -0,0 +1 @@ +/* Set variables here */ From a37eea18717fcd1fd78597eed19d120e071d31ba Mon Sep 17 00:00:00 2001 From: Pablo Diehl Date: Thu, 10 Oct 2024 10:47:12 -0300 Subject: [PATCH 4/4] fix(templates/nextjs/space-jelly-shop): Update hello.ts Fix the api-hello to set runtime to "experimental-edge". --- templates/nextjs/space-jelly-shop/pages/api/hello.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/nextjs/space-jelly-shop/pages/api/hello.ts b/templates/nextjs/space-jelly-shop/pages/api/hello.ts index f8bcc7e5..e995cd0a 100644 --- a/templates/nextjs/space-jelly-shop/pages/api/hello.ts +++ b/templates/nextjs/space-jelly-shop/pages/api/hello.ts @@ -1,6 +1,8 @@ // Next.js API route support: https://nextjs.org/docs/api-routes/introduction import type { NextApiRequest, NextApiResponse } from 'next' +export const runtime = "experimental-edge"; + type Data = { name: string }