import { buildConfig } from 'payload' import { postgresAdapter } from '@payloadcms/db-postgres' import { lexicalEditor } from '@payloadcms/richtext-lexical' import sharp from 'sharp' import path from 'path' import { fileURLToPath } from 'url' import { Projects } from './collections/Projects' import { Services } from './collections/Services' import { Submissions } from './collections/Submissions' import { Media } from './collections/Media' import { Users } from './collections/Users' const filename = fileURLToPath(import.meta.url) const dirname = path.dirname(filename) export default buildConfig({ admin: { user: Users.slug, importMap: { baseDir: path.resolve(dirname, '..'), }, }, collections: [Users, Media, Projects, Services, Submissions], editor: lexicalEditor(), secret: process.env.PAYLOAD_SECRET || 'CHANGE-ME-IN-PRODUCTION', typescript: { outputFile: path.resolve(dirname, '../payload-types.ts'), }, db: postgresAdapter({ pool: { connectionString: process.env.DATABASE_URI || 'postgresql://postgres:postgres@localhost:5432/letsbe', }, }), sharp, localization: { locales: [ { label: 'English', code: 'en' }, { label: 'Français', code: 'fr' }, ], defaultLocale: 'en', fallback: true, }, })