Skip to content

Commit

Permalink
Merge pull request #387 from TripInfoWeb/dev
Browse files Browse the repository at this point in the history
Release: 솔리투어 배포(v1.0.0)
  • Loading branch information
HyunJinNo authored Sep 27, 2024
2 parents a548ed6 + 3e75520 commit 77d2c6d
Show file tree
Hide file tree
Showing 522 changed files with 24,993 additions and 5,037 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: git push into another repo to deploy to vercel

on:
push:
branches: [main]
branches: [dev]

jobs:
build:
Expand All @@ -25,6 +25,6 @@ jobs:
destination-repository-name: solitour-frontend
user-email: ${{ secrets.PRIVATE_EMAIL }}
commit-message: ${{ github.event.commits[0].message }}
target-branch: main
target-branch: dev
- name: Test get variable exported by push-to-another-repository
run: echo $DESTINATION_CLONED_DIRECTORY
14 changes: 13 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "s3.ap-northeast-2.amazonaws.com",
port: "",
pathname: "/solitour-bucket/**",
},
],
},
};

export default nextConfig;
Loading

0 comments on commit 77d2c6d

Please sign in to comment.