mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-07 08:06:12 +01:00
* Upload documents to receipts * Improve documents * Make the feature opt-in * Fix file name issue
16 lines
372 B
JavaScript
16 lines
372 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns:
|
|
process.env.S3_UPLOAD_BUCKET && process.env.S3_UPLOAD_REGION
|
|
? [
|
|
{
|
|
hostname: `${process.env.S3_UPLOAD_BUCKET}.s3.${process.env.S3_UPLOAD_REGION}.amazonaws.com`,
|
|
},
|
|
]
|
|
: [],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|