← Prompts
Reference Instructa AI Prompts

Guidelines for writing Nuxt 3 apps with Appwrite

Guidelines for writing Nuxt 3 apps with Appwrite

# Appwrite + Nuxt 3 Integration Setup Guide

## Prerequisites
- Node.js and npm installed
- Nuxt 3 project initialized
- Appwrite account and project created

## Installation

Install required dependencies:
```bash
npm install appwrite @nuxtjs/appwrite
```

## Core Configuration

Create Appwrite configuration (nuxt.config.ts):
```typescript
export default defineNuxtConfig({
  modules: ['@nuxtjs/appwrite'],
  appwrite: {
    endpoint: process.env.NUXT_PUBLIC_APPWRITE_ENDPOINT || 'https://cloud.appwrite.io/v1',
    projectId: process.env.NUXT_PUBLIC_APPWRITE_PROJECT_ID || '',
  },
  runtimeConfig: {

Sign in to view the full prompt.

Sign In

Classification

Reference Documentation, cheatsheets, setup guides
Scope Project
This codebase
Manual Manually placed / Persistent