mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
Updates the SolidStart example to the latest in anticipation of the upcoming beta release.
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
import { defineConfig } from "vite";
|
|
import solid from "solid-start/vite";
|
|
import vercel from "solid-start-vercel";
|
|
|
|
export default defineConfig({
|
|
plugins: [solid({ adapter: vercel() })],
|
|
});
|