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

14 lines
233 B
JavaScript
Raw Permalink Normal View History

2025-03-20 18:33:29 -04:00
// @ts-check
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone'
2025-03-21 16:40:27 -04:00
}),
devToolbar: {
enabled: false
}
2025-03-20 18:33:29 -04:00
});