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', }) 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