diff options
author | 2023-01-04 20:52:45 +0000 | |
---|---|---|
committer | 2023-01-04 20:52:45 +0000 | |
commit | 1b0f5f377d163776321da14d6ed772d89d3dbb85 (patch) | |
tree | e8a1b87ddd4be85a4f6a50da9e2e65d1f18af350 | |
parent | 5df4a89a3a5a4b2660ae6e911a3833d90efa8f2f (diff) | |
download | astro-1b0f5f377d163776321da14d6ed772d89d3dbb85.tar.gz astro-1b0f5f377d163776321da14d6ed772d89d3dbb85.tar.zst astro-1b0f5f377d163776321da14d6ed772d89d3dbb85.zip |
[ci] format
-rw-r--r-- | packages/astro/src/@types/astro.ts | 6 |
1 files 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 * <a href="/docs/about/">About</a> * <img src=`${import.meta.env.BASE_URL}/image.png`> |