From 0f23159fd96413877091a1536fdb126fa79b9e68 Mon Sep 17 00:00:00 2001 From: "ecospark[bot]" <128108030+ecospark[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:56:54 +0100 Subject: [PATCH] =?UTF-8?q?chore(prettier):=20=F0=9F=A4=96=20=E2=9C=A8=20(?= =?UTF-8?q?#43)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: ecospark[bot] <128108030+ecospark[bot]@users.noreply.github.com> --- astro/astro.config.mjs | 7 +++---- astro/src/pages/index.astro | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) 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. ---