Skip to content

Commit

Permalink
Merge pull request #40 from 1lsang/dev/photo-upload-view
Browse files Browse the repository at this point in the history
[DEV] photo upload view 구현
  • Loading branch information
yugenius0213 authored Oct 17, 2024
2 parents 3f4f0cf + c23e957 commit 76d37b5
Show file tree
Hide file tree
Showing 18 changed files with 2,986 additions and 1,081 deletions.
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/** @type {import('next').NextConfig} */
const { AWS_S3_BUCKET, ASW_S3_REGION } = process.env;

const nextConfig = {
reactStrictMode: false,
Expand All @@ -10,6 +11,9 @@ const nextConfig = {

return config;
},
images: {
domains: [`${AWS_S3_BUCKET}.s3.${ASW_S3_REGION}.amazonaws.com`],
},
};

export default nextConfig;
Loading

0 comments on commit 76d37b5

Please sign in to comment.