Lint cleanups

This commit is contained in:
2022-07-22 00:21:42 +00:00
parent a64758a3f3
commit f4a0182427
3 changed files with 35 additions and 32 deletions

View File

@@ -4,17 +4,17 @@ import path from 'path';
import Users from './collections/Users';
export default buildConfig({
serverURL: 'http://localhost:3001',
admin: {
user: Users.slug,
},
collections: [
Users,
],
typescript: {
outputFile: path.resolve(__dirname, 'payload-types.ts'),
},
graphQL: {
schemaOutputFile: path.resolve(__dirname, 'generated-schema.graphql'),
},
serverURL: 'http://localhost:3001',
admin: {
user: Users.slug
},
collections: [
Users
],
typescript: {
outputFile: path.resolve(__dirname, 'payload-types.ts')
},
graphQL: {
schemaOutputFile: path.resolve(__dirname, 'generated-schema.graphql')
}
});