fix: makes patch work by working around and faking production for yarn dev in api
parent
a2d16800aa
commit
886b101887
|
@ -10,28 +10,36 @@ const withTM = require("next-transpile-modules")([
|
|||
// use something like withPlugins([withTM], {}) if more plugins added later.
|
||||
|
||||
module.exports = withTM({
|
||||
async headers() {
|
||||
return [
|
||||
{
|
||||
// matching all API routes
|
||||
source: "/api/:path*",
|
||||
headers: [
|
||||
{ key: "Access-Control-Allow-Credentials", value: "true" },
|
||||
{ key: "Access-Control-Allow-Origin", value: "*" },
|
||||
{ key: "Access-Control-Allow-Methods", value: "GET,OPTIONS,PATCH,DELETE,POST,PUT" },
|
||||
{
|
||||
key: "Access-Control-Allow-Headers",
|
||||
value:
|
||||
"X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version, Content-Type, api_key, Authorization",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
},
|
||||
async rewrites() {
|
||||
return {
|
||||
beforeFiles: [
|
||||
return [
|
||||
// This redirects requests recieved at / the root to the /api/ folder.
|
||||
{
|
||||
source: "/v:version/:rest*",
|
||||
destination: "/api/v:version/:rest*",
|
||||
source: "/:rest*",
|
||||
destination: "/api/:rest*",
|
||||
},
|
||||
// This redirects requests to api/v*/ to /api/ passing version as a query parameter.
|
||||
{
|
||||
source: "/api/v:version/:rest*",
|
||||
destination: "/api/:rest*?version=:version",
|
||||
},
|
||||
],
|
||||
fallback: [
|
||||
// These rewrites are checked after both pages/public files
|
||||
// and dynamic routes are checked
|
||||
{
|
||||
source: "/:path*",
|
||||
destination: `/api/:path*`,
|
||||
},
|
||||
],
|
||||
};
|
||||
];
|
||||
},
|
||||
});
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
"author": "Cal.com Inc.",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "PORT=3002 next",
|
||||
"start": "next start",
|
||||
"dev": "next build && PORT=3002 next start",
|
||||
"start": "PORT=3002 next start",
|
||||
"build": "next build",
|
||||
"lint": "next lint",
|
||||
"lint-fix": "next lint --fix && prettier --write .",
|
||||
|
|
Loading…
Reference in New Issue