this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 19 lines 412 B view raw
1import { pinia } from "@/store/store" 2import { defineApp } from "iles" 3import "@/assets/base.scss" 4 5export default defineApp({ 6 enhanceApp({ app }) { 7 app.use(pinia) 8 }, 9 head() { 10 return { 11 link: [ 12 { 13 rel: "stylesheet", 14 href: "https://api.fonts.coollabs.io/css2?family=Cascadia+Mono&family=Meow+Script&family=Oxygen+Mono&display=swap", 15 }, 16 ], 17 } 18 }, 19})