gitextract_uaky4g3w/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ ├── documentation.yml │ │ ├── feature-suggestion.yml │ │ └── help-wanted.yml │ └── workflows/ │ ├── ci.yml │ ├── provenance.yml │ └── release.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENCE ├── README.md ├── build.config.ts ├── docs/ │ ├── .gitignore │ ├── app.config.ts │ ├── assets/ │ │ └── css/ │ │ └── main.css │ ├── components/ │ │ └── AppHeaderLogo.vue │ ├── content/ │ │ ├── 1.get-started/ │ │ │ ├── .navigation.yml │ │ │ ├── 1.introduction.md │ │ │ ├── 2.installation.md │ │ │ ├── 3.configuration.md │ │ │ ├── 4.enabling-capacitor.md │ │ │ └── 5.watch-outs.md │ │ ├── 2.overview/ │ │ │ ├── .navigation.yml │ │ │ ├── 1.routing.md │ │ │ ├── 2.theming.md │ │ │ ├── 3.ionic-auto-imports.md │ │ │ ├── 4.module-utilities.md │ │ │ ├── 5.icons.md │ │ │ └── 6.deployment.md │ │ ├── 3.cookbook/ │ │ │ ├── .navigation.yml │ │ │ ├── 1.customising-app-vue.md │ │ │ ├── 2.local-development.md │ │ │ ├── 3.app-tabs.md │ │ │ ├── 4.page-metadata.md │ │ │ ├── 5.creating-ios-android-apps.md │ │ │ ├── 6.web-and-device.md │ │ │ └── 7.live-updates.md │ │ └── index.md │ ├── nuxt.config.ts │ ├── package.json │ ├── tokens.config.ts │ └── tsconfig.json ├── eslint.config.js ├── package.json ├── playground/ │ ├── assets/ │ │ └── css/ │ │ └── ionic.css │ ├── capacitor.config.ts │ ├── components/ │ │ └── ExploreContainer.vue │ ├── composables/ │ │ └── usePhotoGallery.ts │ ├── middleware/ │ │ └── auth.global.ts │ ├── nuxt.config.ts │ ├── package.json │ ├── pages/ │ │ ├── overlap.vue │ │ ├── tabs/ │ │ │ ├── tab1/ │ │ │ │ └── index.vue │ │ │ ├── tab2/ │ │ │ │ └── index.vue │ │ │ ├── tab3/ │ │ │ │ ├── index.vue │ │ │ │ └── page-two.vue │ │ │ └── tab4/ │ │ │ └── index.vue │ │ └── tabs.vue │ └── tsconfig.json ├── pnpm-workspace.yaml ├── renovate.json ├── src/ │ ├── imports.ts │ ├── module.ts │ ├── parts/ │ │ ├── capacitor.ts │ │ ├── components.ts │ │ ├── css.ts │ │ ├── icons.ts │ │ ├── meta.ts │ │ └── router.ts │ ├── runtime/ │ │ ├── app.vue │ │ ├── components/ │ │ │ └── IonAnimation.vue │ │ ├── composables/ │ │ │ └── head.ts │ │ └── plugins/ │ │ ├── ionic.ts │ │ └── router.ts │ └── utils.ts ├── test/ │ ├── e2e/ │ │ ├── ion-head.spec.ts │ │ └── ssr.spec.ts │ └── unit/ │ ├── capacitor.spec.ts │ └── imports.spec.ts ├── tsconfig.json └── vitest.config.ts