init front

This commit is contained in:
2024-04-20 10:48:50 +02:00
parent 96aaa10f48
commit 84255ef0a6
13 changed files with 10083 additions and 0 deletions

20
front/astro.config.mjs Normal file
View File

@ -0,0 +1,20 @@
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// integrations: [tailwind(), test, routing(), version(), buildInfos()],
compressHTML: true,
build: {
assets: 'assets',
inlineStylesheets: 'auto'
},
server: {
host: true,
port: 3000
},
trailingSlash: 'never',
output: 'static', //'server',
// adapter: node({
// mode: 'standalone'
// }),
});