diff --git a/astro/astro.config.mjs b/astro/astro.config.mjs index 8f1c76c..81f93a1 100644 --- a/astro/astro.config.mjs +++ b/astro/astro.config.mjs @@ -1,9 +1,8 @@ // @ts-check +import vercel from '@astrojs/vercel' import {defineConfig} from 'astro/config' -import vercel from '@astrojs/vercel'; - // https://astro.build/config export default defineConfig({ - adapter: vercel() -}) \ No newline at end of file + adapter: vercel(), +}) diff --git a/astro/src/pages/index.astro b/astro/src/pages/index.astro index 60b875f..4e403d6 100644 --- a/astro/src/pages/index.astro +++ b/astro/src/pages/index.astro @@ -1,9 +1,9 @@ --- -export const prerender = false - import Welcome from '../components/Welcome.astro' import Layout from '../layouts/Layout.astro' +export const prerender = false + // Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build // Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh. ---