diff options
author | 2023-11-06 10:01:01 +0000 | |
---|---|---|
committer | 2023-11-06 10:01:01 +0000 | |
commit | 0f5b05428173073074d01be13030f26c443b7064 (patch) | |
tree | 95dafb60bf0eff038e8d8e39ddee0016b9849137 | |
parent | 3988bbcc9ead0b9af60b8a8749a0ad25c686bde3 (diff) | |
download | astro-0f5b05428173073074d01be13030f26c443b7064.tar.gz astro-0f5b05428173073074d01be13030f26c443b7064.tar.zst astro-0f5b05428173073074d01be13030f26c443b7064.zip |
[ci] format
Diffstat (limited to '')
-rw-r--r-- | packages/astro/src/core/config/schema.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/config/schema.ts b/packages/astro/src/core/config/schema.ts index 289dfc698..08507a548 100644 --- a/packages/astro/src/core/config/schema.ts +++ b/packages/astro/src/core/config/schema.ts @@ -8,9 +8,9 @@ import { markdownConfigDefaults } from '@astrojs/markdown-remark'; import { bundledThemes, type BuiltinTheme } from 'shikiji'; import type { AstroUserConfig, ViteUserConfig } from '../../@types/astro.js'; +import fs from 'node:fs'; import type { OutgoingHttpHeaders } from 'node:http'; import path from 'node:path'; -import fs from 'node:fs'; import { fileURLToPath, pathToFileURL } from 'node:url'; import { z } from 'zod'; import { appendForwardSlash, prependForwardSlash, removeTrailingForwardSlash } from '../path.js'; |