mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-04 03:27:05 -04:00

params at client creation cannot be type checked, Bucket was explicitely added to each call
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
export const awsConfig = {
|
|
region: process.env.AWS_REGION,
|
|
credentials: {
|
|
accessKeyId: process.env.AWS_KEY!,
|
|
secretAccessKey: process.env.AWS_SECRET!,
|
|
},
|
|
};
|
|
|
|
export const awsParams = {
|
|
Bucket: process.env.AWS_S3_BUCKET!,
|
|
};
|