feat: update default layout

This commit is contained in:
Sonny
2025-08-06 19:50:53 +02:00
parent d56bd1ef80
commit 97ba56b1e7
36 changed files with 627 additions and 119 deletions

View File

@@ -1,4 +1,4 @@
import project from '#config/project';
import { APP_COLOR, PROJECT_DESCRIPTION, PROJECT_NAME } from '#config/project';
import { getDirname } from '@adonisjs/core/helpers';
import inertia from '@adonisjs/inertia/client';
import adonisjs from '@adonisjs/vite/client';
@@ -16,11 +16,11 @@ export default defineConfig({
enabled: true,
},
manifest: {
name: project.name,
short_name: project.name,
description: project.description,
theme_color: project.color,
background_color: project.color,
name: PROJECT_NAME,
short_name: PROJECT_NAME,
description: PROJECT_DESCRIPTION,
theme_color: APP_COLOR,
background_color: APP_COLOR,
scope: '/',
display: 'standalone',
orientation: 'portrait',