From 20c96bb90434ee3928ced4fc66a0b48c8c02dc7e Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 4 Sep 2025 11:36:40 +0800 Subject: [PATCH 1/2] Added default site --- astro.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/astro.config.mjs b/astro.config.mjs index 4ae39cf..331209f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -15,4 +15,5 @@ export default defineConfig({ build: { assets: '_fwt', }, + site: 'http://localhost:8080', }) From da0c2f659e7854771c85d9dfa3d88770d27616b6 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 4 Sep 2025 11:37:06 +0800 Subject: [PATCH 2/2] Removed decoration on link component --- fwt/components/Link/Link.sass | 3 +++ fwt/components/Link/Link.tsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 fwt/components/Link/Link.sass diff --git a/fwt/components/Link/Link.sass b/fwt/components/Link/Link.sass new file mode 100644 index 0000000..efc3b4f --- /dev/null +++ b/fwt/components/Link/Link.sass @@ -0,0 +1,3 @@ +a + text-decoration: none + color: inherit diff --git a/fwt/components/Link/Link.tsx b/fwt/components/Link/Link.tsx index acbd0b9..1e7e337 100644 --- a/fwt/components/Link/Link.tsx +++ b/fwt/components/Link/Link.tsx @@ -1,4 +1,4 @@ -// import { prefetch } from 'astro:prefetch' +import './Link.sass' interface Props { to: string