Setup

Add @bg-dev/nuxt-s3 dependency to your project

npx nuxi module add @bg-dev/nuxt-s3

By default, the modules use fs driver for storage in the filesystem.

nuxt.config.ts
s3: {
    driver: 'fs',
    fsBase: './uploads' // Relative path of the base directory
}

To use S3 driver make sure to set the credentials provided by the service provider.

nuxt.config.ts
s3: {
  driver: 's3',
  bucket: '',
  endpoint: '',
  region: '', // Set to `auto` if not provided
  accessKeyId: '', // Client ID
  secretAccessKey: '', // Client secret
}

This module is tested with Cloudflare R2, Storj, Backblaze and Filebase