Disable function splitting
This commit is contained in:
parent
ccc2f2376e
commit
3c3d779d3d
1 changed files with 0 additions and 6 deletions
|
@ -13,9 +13,6 @@ if (process.env.VERCEL) {
|
||||||
configMixin = {
|
configMixin = {
|
||||||
output: "server",
|
output: "server",
|
||||||
adapter: vercel(),
|
adapter: vercel(),
|
||||||
build: {
|
|
||||||
split: true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
} else if (process.env.CF_PAGES) {
|
} else if (process.env.CF_PAGES) {
|
||||||
console.info("Using Cloudflare adapter...");
|
console.info("Using Cloudflare adapter...");
|
||||||
|
@ -28,9 +25,6 @@ if (process.env.VERCEL) {
|
||||||
configMixin = {
|
configMixin = {
|
||||||
output: "server",
|
output: "server",
|
||||||
adapter: netlify(),
|
adapter: netlify(),
|
||||||
build: {
|
|
||||||
split: 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