Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 716 Bytes

invalid-page-config.md

File metadata and controls

39 lines (25 loc) · 716 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 and not modified dynamically.

This is not allowed

export const config = 'hello world'

This is not allowed

const config = {}
config.amp = true

This is not allowed

export { config } from '../config'

This is allowed

export const config = { amp: true }

Useful Links