From b2861e5f38dfc9b469863c622955692b109cb54b Mon Sep 17 00:00:00 2001 From: Fuma Nama Date: Fri, 10 Jan 2025 22:19:59 +0800 Subject: [PATCH] Chore: fix lint --- packages/mdx/src/config/load.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mdx/src/config/load.ts b/packages/mdx/src/config/load.ts index 2845d33b0..a8f9dea8a 100644 --- a/packages/mdx/src/config/load.ts +++ b/packages/mdx/src/config/load.ts @@ -2,7 +2,7 @@ import * as path from 'node:path'; import type { DocCollection, MetaCollection } from '@/config/define'; import { type GlobalConfig } from '@/config/types'; import type { ProcessorOptions } from '@mdx-js/mdx'; -import { fileURLToPath, pathToFileURL } from 'node:url'; +import { pathToFileURL } from 'node:url'; export function findConfigFile(): string { return path.resolve('source.config.ts');