Add galleryImages array field to DyvoLisPage global so the photo gallery is editable from Payload admin. Component falls back to 24 static images when no CMS images are uploaded. Fix eslint flat-config error caused by referencing @typescript-eslint plugin without an explicit import. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
import nextConfig from 'eslint-config-next'
|
|
|
|
/** @type {import('eslint').Linter.Config[]} */
|
|
const eslintConfig = [
|
|
...nextConfig,
|
|
{
|
|
rules: {
|
|
'no-console': ['warn', { allow: ['warn', 'error'] }],
|
|
},
|
|
},
|
|
]
|
|
|
|
export default eslintConfig
|