From 1b0f5f377d163776321da14d6ed772d89d3dbb85 Mon Sep 17 00:00:00 2001 From: sarah11918 Date: Wed, 4 Jan 2023 20:52:45 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/@types/astro.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 0721ba82c..8a8c87c4f 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -424,7 +424,7 @@ export interface AstroUserConfig { * @name base * @type {string} * @description - * The base path to deploy to. Astro will use this path as the root for your pages and assets both in development and in production build. + * The base path to deploy to. Astro will use this path as the root for your pages and assets both in development and in production build. * * In the example below, `astro dev` will start your server at `/docs`. * @@ -433,9 +433,9 @@ export interface AstroUserConfig { * base: '/docs' * } * ``` - * + * * When using this option, all of your static asset imports and URLs should add the base as a prefix. You can access this value via `import.meta.env.BASE_URL`. - * + * * ```astro * About *