mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
* Fix Server Islands in Vercel * Add a changeset * Get server islands pattern from the segments * Move getPattern so it can be used at runtime * Fix build
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
import vercel from '@astrojs/vercel/serverless';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
output: "server",
|
|
adapter: vercel(),
|
|
experimental: {
|
|
serverIslands: true,
|
|
}
|
|
});
|