Fix Netlify?
Apparently Netlify doesn't split functions properly
This commit is contained in:
parent
f4845de588
commit
399f995ce9
1 changed files with 1 additions and 3 deletions
|
@ -31,9 +31,7 @@ if (process.env.VERCEL) {
|
||||||
} else if (process.env.NETLIFY) {
|
} else if (process.env.NETLIFY) {
|
||||||
console.info("Using Netlify (Functions) adapter...");
|
console.info("Using Netlify (Functions) adapter...");
|
||||||
adapterConfig = {
|
adapterConfig = {
|
||||||
adapter: netlify({
|
adapter: netlify(),
|
||||||
functionPerRoute: true,
|
|
||||||
}),
|
|
||||||
};
|
};
|
||||||
} else if (process.argv.includes("--s2f-use-deno")) {
|
} else if (process.argv.includes("--s2f-use-deno")) {
|
||||||
console.info("Using Deno adapter...");
|
console.info("Using Deno adapter...");
|
||||||
|
|
Reference in a new issue