40 lines
991 B
TypeScript
40 lines
991 B
TypeScript
/* eslint-disable import/no-relative-packages */
|
|
import path from 'path'
|
|
import { buildConfig } from 'payload/config'
|
|
|
|
import { sentry } from '../../src/index'
|
|
import Posts from './collections/Posts'
|
|
import Users from './collections/Users'
|
|
import { testErrors } from './test/component'
|
|
|
|
export default buildConfig({
|
|
serverURL: 'http://localhost:3000',
|
|
admin: {
|
|
user: Users.slug,
|
|
components: {
|
|
beforeDashboard: [testErrors],
|
|
},
|
|
},
|
|
collections: [Posts, Users],
|
|
typescript: {
|
|
outputFile: path.resolve(__dirname, 'payload-types.ts'),
|
|
},
|
|
graphQL: {
|
|
schemaOutputFile: path.resolve(__dirname, 'generated-schema.graphql'),
|
|
},
|
|
plugins: [
|
|
sentry({
|
|
dsn: 'https://61edebe5ee6d4d38a9d6459c7323d777@o4505289711681536.ingest.sentry.io/4505357688242176',
|
|
options: {
|
|
init: {
|
|
debug: true,
|
|
},
|
|
requestHandler: {
|
|
serverName: false,
|
|
},
|
|
captureErrors: [400, 403, 404],
|
|
},
|
|
}),
|
|
],
|
|
})
|