test build container
All checks were successful
Build and Push Docker / build (push) Successful in 21s

This commit is contained in:
justin
2025-10-10 17:27:35 +02:00
parent 78062d4ac3
commit 4dfada2ea0
2 changed files with 12 additions and 1 deletions

11
inertia/pages/page.vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
import { Head } from '@inertiajs/vue3'
</script>
<template>
<Head title="Page" />
<div>
Page
<button class="plausible-event-name=Button+Click">Click me</button>
</div>
</template>

View File

@@ -9,4 +9,4 @@
import router from '@adonisjs/core/services/router' import router from '@adonisjs/core/services/router'
router.on('/').renderInertia('home') router.on('/').renderInertia('home')
router.on('/page').renderInertia('page')