import { defineConfig } from 'strata'; export default defineConfig({ app: { title: 'Strata Example App', description: 'A simple example using Strata Framework', }, api: { baseUrl: 'https://jsonplaceholder.typicode.com', cache: { enabled: true, defaultTTL: '5m', }, }, state: { encrypt: true, persist: true, }, });