diff options
Diffstat (limited to '')
-rw-r--r-- | src/config.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts index 96c4e92d4..72583df5a 100644 --- a/src/config.ts +++ b/src/config.ts @@ -2,6 +2,7 @@ import type { AstroConfig } from './@types/astro'; import { join as pathJoin, resolve as pathResolve } from 'path'; import { existsSync } from 'fs'; +/** Attempt to load an `astro.config.mjs` file */ export async function loadConfig(rawRoot: string | undefined): Promise<AstroConfig | undefined> { if (typeof rawRoot === 'undefined') { rawRoot = process.cwd(); |