feat: CI-CD front (#2)
All checks were successful
Build Docker Image / run (push) Successful in 22s

Reviewed-on: #2
This commit is contained in:
2024-04-21 15:24:15 +02:00
parent db493301c8
commit a03c5cb3db
7 changed files with 351 additions and 15 deletions

View File

@ -1,4 +1,5 @@
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({
@ -13,8 +14,8 @@ export default defineConfig({
port: 3000
},
trailingSlash: 'never',
output: 'static', //'server',
// adapter: node({
// mode: 'standalone'
// }),
output: 'server',
adapter: node({
mode: 'standalone'
}),
});