
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
solid-start-vercel
Advanced tools
## This package is deprecated see [@solidjs/start](https://www.npmjs.com/package/@solidjs/start)
Adapter for Solid apps that work on Vercel.
This is very experimental; the adapter API isn't at all fleshed out, and things will definitely change.
Add the adapter in your vite.config.js
file. By default this deploys to a Vercel Function.
import solid from "solid-start/vite";
import vercel from "solid-start-vercel";
export default defineConfig({
plugins: [solid({ adapter: vercel() })]
});
To deploy to the edge pass in the edge option.
import solid from "solid-start/vite";
import vercel from "solid-start-vercel";
export default defineConfig({
plugins: [solid({ adapter: vercel({ edge: true }) })]
});
To enable ISR/Prerender, pass in the prerender function.
import { defineConfig } from "vite"
import solid from "solid-start/vite"
import vercel from "solid-start-vercel"
export default defineConfig({
plugins: [
solid({
ssr: true,
adapter: vercel({
prerender: true,
}),
}),
],
})
You can also set the expiration
time and/or the bypassToken
.
import { defineConfig } from "vite"
import solid from "solid-start/vite"
import vercel from "solid-start-vercel"
export default defineConfig({
plugins: [
solid({
ssr: true,
adapter: vercel({
prerender: {
expiration: 60,
bypassToken: "87734ad8259d67c3c11747d3e4e112d0",
},
}),
}),
],
})
You will need to have the vercel-cli installed globally.
> npm i -g vercel
This adapter makes use of the Build Output API which you need to enable through the Vercel CLI
> vercel env add ENABLE_VC_BUILD
follow the prompts to set it to 1
for all environments
FAQs
## This package is deprecated see [@solidjs/start](https://www.npmjs.com/package/@solidjs/start)
The npm package solid-start-vercel receives a total of 78 weekly downloads. As such, solid-start-vercel popularity was classified as not popular.
We found that solid-start-vercel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.