mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
50ca656dba
* feat: merge hybrid and static * fix: linting * fix: get a bunch of tests passing * fix: make forceServerOutput optional * fix: more tests passing * fix: http2 test * fix: CCC * fix: get unit tests passing * fix: lint * fix: vercel * fix: build * fix: build * fix: db tests * fix: get all normal tests passing * fix: e2e tests * refactor: cleanup code * fix: more tests * fix: windows * fix: apply feedback * perf: do in parallel * fix: tests * fix: tests, for real * fix: make server islands tests server-rendered * fix: apply feedback * nit: remove unnecessary file * fix: test remove test that abuse prerender logic * fix: ensure image endpoint is there on dev reload
14 lines
351 B
JavaScript
14 lines
351 B
JavaScript
import db from '@astrojs/db';
|
|
import node from '@astrojs/node';
|
|
import webVitals from '@astrojs/web-vitals';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [db(), webVitals()],
|
|
output: 'static',
|
|
adapter: node({ mode: 'standalone' }),
|
|
devToolbar: {
|
|
enabled: false,
|
|
},
|
|
});
|