Home
Softono
a

aaronksaunders

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
2

Software by aaronksaunders

starter-nuxt-ionic-tailwind-supabase
Open Source

starter-nuxt-ionic-tailwind-supabase

# Nuxt 3 Ionic Tailwind Supabase Minimal Starter Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. - Nuxt Ionic Module - https://ionic.nuxtjs.org/ - Nuxt Supabase Module - https://supabase.nuxtjs.org/ - Nuxt Tailwind Module - https://tailwindcss.nuxtjs.org/ - Nuxt Supabase Module - https://supabase.nuxtjs.org/ - Auth Issue: https://github.com/nuxt-modules/supabase/issues/144 - Ionic VS Code Extension - https://ionicframework.com/docs/intro/vscode-extension changes `package.json` for using ionic extension and build apps for mobile devices ``` "scripts": { "dev": "nuxi dev", "build": "nuxi generate", "ionic:build": "npm run build", "ionic:serve": "npm run dev" }, ``` changes `nuxt.config.ts` for using ionic extension and build apps for mobile devices, you must set `ssr:false` ``` export default defineNuxtConfig({ modules: ["@nuxtjs/ionic", "@nuxtjs/supabase", "@nuxtjs/tailwind"], ssr: false, supabase: {}, ionic: { integrations: { }, css: { utilities: true, }, }, }); ``` changes `capacitor.config.ts` for using ionic extension and build apps for mobile devices, you must set webDir to `dist` ``` import { CapacitorConfig } from '@capacitor/cli' const config: CapacitorConfig = { appId: 'io.ionic.starter', appName: 'nuxt-ionic-playground', webDir: 'dist', bundledWebRuntime: false, } export default config ```

Mobile Development Backend as a Service
31 Github Stars
ionic-capacitor-nuxt-video-app
Open Source

ionic-capacitor-nuxt-video-app

# Ionic Capacitor VueJS Nuxt3 Supabase Starter Template --- - Blog Post: https://dev.to/aaronksaunders/how-to-build-a-nuxt3-ionic-capacitor-starter-app-4d3k - Video: https://youtu.be/tDYPZvjVTcc ## Code For Each Video There is a seperate branch for each video in the series - Part One: https://github.com/aaronksaunders/ionic-capacitor-nuxt-video-app - Part Two: https://github.com/aaronksaunders/ionic-capacitor-nuxt-video-app/tree/part-2 - Part Three: https://github.com/aaronksaunders/ionic-capacitor-nuxt-video-app/tree/part-3 --- Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more. ## Setup Make sure to install the dependencies: ```bash # yarn yarn install # npm npm install # pnpm pnpm install --shamefully-hoist ``` ## Development Server Start the development server on http://localhost:3000 ```bash npm run dev ``` ## Production Build the application for production: ```bash npm run build ``` Locally preview production build: ```bash npm run preview ``` Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment) for more information.

Mobile Development
30 Github Stars