Skip to content

Commit 606c73e

Browse files
committed
fix: remove c12 default value
1 parent d4199e5 commit 606c73e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const defaultConfig = {
1212
}
1313

1414
export async function loadContentConfig(rootDir: string, opts: { defaultFallback?: boolean } = {}) {
15-
const { config, configFile } = await loadConfig({ name: 'content', cwd: rootDir, defaultConfig })
15+
const { config, configFile } = await loadConfig({ name: 'content', cwd: rootDir })
1616

1717
if (!configFile && opts?.defaultFallback) {
1818
logger.warn('`content.config.ts` is not found, falling back to default collection. In order to have full control over your collections, create the config file in project root. See: https://content.nuxt.com/getting-started/installation')

0 commit comments

Comments
 (0)