- Install and configure @vite-pwa/nuxt module - Generate app icons in multiple sizes (192x192, 512x512, 180x180) - Create custom SVG icon with Nuxt + Authentik branding - Configure PWA manifest with theme colors and display options - Add Workbox service worker with caching strategies - Include NetworkFirst caching for Authentik API - Generate app store screenshots (mobile, tablet, desktop) - Enable offline functionality and auto-updates PWA Features: - Installable on mobile and desktop - Offline support with service worker - Custom splash screens and icons - Theme color: #00DC82 (Nuxt green) - App name: Plantilla Nuxt + Authentik
Nuxt Minimal Starter
Look at the Nuxt documentation to learn more.
Setup
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Development Server
Start the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Production
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.