1
Fork 0
This repository has been archived on 2025-04-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astro-Resend-Form/astro.config.mjs
2025-03-21 16:40:27 -04:00

14 lines
No EOL
233 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone'
}),
devToolbar: {
enabled: false
}
});