mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
d8132626b0
* Unflag Server Islands * update example * Add changeset * Only append serverIslands route if there is one * Update .changeset/strange-sheep-film.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * check buildoutput instead * Update packages/astro/src/core/errors/errors-data.ts Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> * remove flag --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
15 lines
389 B
JavaScript
15 lines
389 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import nodejs from '@astrojs/node';
|
|
import react from '@astrojs/react';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: 'server',
|
|
adapter: nodejs({ mode: 'standalone' }),
|
|
integrations: [
|
|
react(),
|
|
tailwind({ applyBaseStyles: false })
|
|
],
|
|
devToolbar: { enabled: false },
|
|
});
|