diff options
-rw-r--r-- | packages/astro/src/content/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/content/utils.ts b/packages/astro/src/content/utils.ts index c0985742b..f94b87d97 100644 --- a/packages/astro/src/content/utils.ts +++ b/packages/astro/src/content/utils.ts @@ -16,6 +16,7 @@ import type { import { AstroError, AstroErrorData, MarkdownError, errorMap } from '../core/errors/index.js'; import { isYAMLException } from '../core/errors/utils.js'; import type { Logger } from '../core/logger/core.js'; +import { normalizePath } from '../core/viteUtils.js'; import { CONTENT_FLAGS, CONTENT_LAYER_TYPE, @@ -25,7 +26,6 @@ import { PROPAGATED_ASSET_FLAG, } from './consts.js'; import { createImage } from './runtime-assets.js'; -import { normalizePath } from '../core/viteUtils.js'; /** * Amap from a collection + slug to the local file path. * This is used internally to resolve entry imports when using `getEntry()`. |