Skip to content
  • This project
    • Loading...
  • Sign in

brainfood / astro-wt

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • astro-wt
  • astro.config.mjs
  • Adam Heath's avatar
    Add some simple instructions. · 2faeafaa
    2faeafaa
    Adam Heath committed 2024-05-31 15:13:59 -0500
astro.config.mjs 282 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { defineConfig } from 'astro/config'
import react from '@astrojs/react'
import node from '@astrojs/node'

// https://astro.build/config
export default defineConfig({
  integrations: [
    react(),
  ],
  adapter: node({
    mode: 'middleware',
  }),
  output: 'server',
});