mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import vercel from '@astrojs/vercel/serverless';
|
||
|
|
||
|
export default defineConfig({
|
||
|
output: "server",
|
||
|
adapter: vercel({
|
||
|
isr: {
|
||
|
bypassToken: "1c9e601d-9943-4e7c-9575-005556d774a8",
|
||
|
expiration: 120,
|
||
|
exclude: ["/two"]
|
||
|
}
|
||
|
})
|
||
|
});
|