First cut
This commit is contained in:
10
astro.config.mjs
Normal file
10
astro.config.mjs
Normal file
@@ -0,0 +1,10 @@
|
||||
import { defineConfig } from 'astro/config';
|
||||
import node from '@astrojs/node';
|
||||
import react from '@astrojs/react';
|
||||
|
||||
export default defineConfig({
|
||||
output: 'server',
|
||||
adapter: node({ mode: 'standalone' }),
|
||||
integrations: [react()],
|
||||
server: { port: 4321 },
|
||||
});
|
||||
Reference in New Issue
Block a user