diff --git a/astro.config.mjs b/astro.config.mjs index 4ae39cf..3843575 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,7 +5,6 @@ import compressor from 'astro-compressor' import robotsTxt from '@itsmatteomanf/astro-robots-txt' export default defineConfig({ - prefetch: true, integrations: [solidJs(), compressor({ gzip: false, brotli: true }), robotsTxt()], vite: { css: { diff --git a/fwt/components/Button/Button.tsx b/fwt/components/Button/Button.tsx index 2de125f..5238044 100644 --- a/fwt/components/Button/Button.tsx +++ b/fwt/components/Button/Button.tsx @@ -31,14 +31,14 @@ export default (props: Props) => { - + - + diff --git a/fwt/components/Link/Link.tsx b/fwt/components/Link/Link.tsx index acbd0b9..4ccf49f 100644 --- a/fwt/components/Link/Link.tsx +++ b/fwt/components/Link/Link.tsx @@ -1,5 +1,3 @@ -// import { prefetch } from 'astro:prefetch' - interface Props { to: string children?: any @@ -8,7 +6,7 @@ interface Props { export default (props: Props) => { return ( <> - + {props.children} diff --git a/src/pages/next.astro b/src/pages/next.astro index e762fa1..0b7fcd4 100644 --- a/src/pages/next.astro +++ b/src/pages/next.astro @@ -15,7 +15,7 @@ import Column from '../../fwt/components/Column/Column'

FWT Components