-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
There is a syntax error at src/index.ts that prevents running dev command on fresh clones.
✘ [ERROR] Expected "}" but found "maxAge"
src/index.ts:19:2:
19 │ maxAge: 86400, // 24 hours
│ ~~~~~~
╵ }
Simply remove the misplaced "x" in cors settings.
cors({
origin: '*', // Allow any origin for development; restrict this in production
allowMethods: ['POST', 'GET', 'OPTIONS'],
allowHeaders: ['Content-Type'],
exposeHeaders: ['X-Session-Id'],x
maxAge: 86400, // 24 hours
}),
to
cors({
origin: '*', // Allow any origin for development; restrict this in production
allowMethods: ['POST', 'GET', 'OPTIONS'],
allowHeaders: ['Content-Type'],
exposeHeaders: ['X-Session-Id'],
maxAge: 86400, // 24 hours
}),
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels