this repo has no description
0
fork

Configure Feed

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

format app.ts

+6 -6
+6 -6
src/app.ts
··· 1 - import { pinia } from "@/store/store"; 2 - import { defineApp } from "iles"; 3 - import "@/assets/base.scss"; 1 + import { pinia } from "@/store/store" 2 + import { defineApp } from "iles" 3 + import "@/assets/base.scss" 4 4 5 5 export default defineApp({ 6 6 enhanceApp({ app }) { 7 - app.use(pinia); 7 + app.use(pinia) 8 8 }, 9 9 head() { 10 10 return { ··· 14 14 href: "https://fonts.googleapis.com/css2?family=Gulzar&family=Meow+Script&display=swap", 15 15 }, 16 16 ], 17 - }; 17 + } 18 18 }, 19 - }); 19 + })