Files
dealplustech/node_modules/unstorage/drivers/s3.d.cts
Kunthawat Greethong 6562a1748f fix: Fix product page syntax errors
1. Remove duplicate/broken code in product tables section
2. Fix PostCSS config for Tailwind 4
3. Add @tailwindcss/postcss dependency
4. Remove --production flag from Dockerfile (sharp required)

All fixes enable successful Docker build with favicon working.
2026-03-03 14:57:46 +07:00

35 lines
997 B
TypeScript

export interface S3DriverOptions {
/**
* Access Key ID
*/
accessKeyId: string;
/**
* Secret Access Key
*/
secretAccessKey: string;
/**
* The endpoint URL of the S3 service.
*
* - For AWS S3: "https://s3.[region].amazonaws.com/"
* - For cloudflare R2: "https://[uid].r2.cloudflarestorage.com/"
*/
endpoint: string;
/**
* The region of the S3 bucket.
*
* - For AWS S3, this is the region of the bucket.
* - For cloudflare, this is can be set to `auto`.
*/
region: string;
/**
* The name of the bucket.
*/
bucket: string;
/**
* Enabled by default to speedup `clear()` operation. Set to `false` if provider is not implementing [DeleteObject](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjects.html).
*/
bulkDelete?: boolean;
}
declare const _default: (opts: S3DriverOptions) => import("..").Driver<S3DriverOptions, never>;
export default _default;