feat: add initial application structure with configuration, UI components, and state management

This commit is contained in:
Jennie Robinson Faber 2025-08-09 18:13:16 +01:00
parent fadf94002c
commit 0af6b17792
56 changed files with 6137 additions and 129 deletions

View file

@ -0,0 +1,7 @@
import { defineNuxtPlugin } from "#app";
import { createPersistedState } from "pinia-plugin-persistedstate";
export default defineNuxtPlugin((nuxtApp) => {
// Register persisted state plugin for Pinia on client
nuxtApp.$pinia.use(createPersistedState());
});