Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 537 Bytes

invalid-page-config.md

File metadata and controls

26 lines (16 loc) · 537 Bytes

Invalid Page Config

Why This Error Occurred

In one of your pages you did export const config with an invalid value.

Possible Ways to Fix It

The page's config must be an object initialized directly when being exported.

This is not allowed

export const config = 'hello world'

This is allowed

export const config = { amp: true }

Useful Links