Skip to content

Commit 4e71f1e

Browse files
committed
Vercel 배포 오류 수정: Gemfile.lock 추가 및 빌드 설정 개선
1 parent 1664849 commit 4e71f1e

File tree

3 files changed

+98
-3
lines changed

3 files changed

+98
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Thumbs.db
2626

2727
# Ruby
2828
*.gem
29-
Gemfile.lock
29+
# Gemfile.lock # Vercel 배포를 위해 주석 처리
3030

3131
# Environment variables
3232
.env

Gemfile.lock

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.5)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.2.2)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
ffi (1.15.5)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (1.14.1)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.3.2)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (>= 2.0, < 4.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3, >= 2.3.1)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (>= 0.3.6, < 0.5)
28+
pathutil (~> 0.9)
29+
rouge (>= 3.0, < 5.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (>= 1.8, < 4.0)
32+
jekyll-feed (0.17.0)
33+
jekyll (>= 3.7, < 5.0)
34+
jekyll-include-cache (0.2.1)
35+
jekyll (>= 3.7, < 5.0)
36+
jekyll-paginate (1.1.0)
37+
jekyll-sass-converter (3.0.0)
38+
sass-embedded (~> 1.54)
39+
jekyll-seo-tag (2.8.0)
40+
jekyll (>= 3.8, < 5.0)
41+
jekyll-sitemap (1.4.0)
42+
jekyll (>= 3.7, < 5.0)
43+
jekyll-theme-hydejack (9.1.6)
44+
jekyll (>= 3.8, < 5.0)
45+
jekyll-feed (~> 0.9)
46+
jekyll-include-cache (~> 0.2)
47+
jekyll-paginate (~> 1.1)
48+
jekyll-redirect-from (~> 0.14)
49+
jekyll-seo-tag (~> 2.0)
50+
jekyll-sitemap (~> 1.0)
51+
jekyll-redirect-from (0.16.0)
52+
jekyll (>= 3.3, < 5.0)
53+
jekyll-watch (2.2.1)
54+
listen (~> 3.0)
55+
kramdown (2.4.0)
56+
rexml
57+
kramdown-parser-gfm (1.1.0)
58+
kramdown (~> 2.0)
59+
liquid (4.0.4)
60+
listen (3.8.0)
61+
rb-fsevent (~> 0.10, >= 0.10.3)
62+
rb-inotify (~> 0.9, >= 0.9.10)
63+
mercenary (0.4.0)
64+
pathutil (0.16.2)
65+
forwardable-extended (~> 2.6)
66+
public_suffix (5.0.3)
67+
rb-fsevent (0.11.2)
68+
rb-inotify (0.10.1)
69+
ffi (~> 1.0)
70+
rexml (3.2.6)
71+
rouge (4.1.3)
72+
safe_yaml (1.0.5)
73+
sass-embedded (1.69.4-x86_64-linux-gnu)
74+
google-protobuf (~> 3.23)
75+
terminal-table (3.0.2)
76+
unicode-display_width (>= 1.1.1, < 3)
77+
unicode-display_width (2.4.2)
78+
webrick (1.8.1)
79+
google-protobuf (3.24.4-x86_64-linux)
80+
81+
PLATFORMS
82+
x86_64-linux
83+
84+
DEPENDENCIES
85+
jekyll (~> 4.3.0)
86+
jekyll-feed (~> 0.12)
87+
jekyll-include-cache (~> 0.2)
88+
jekyll-paginate (~> 1.1)
89+
jekyll-seo-tag (~> 2.6)
90+
jekyll-sitemap (~> 1.4)
91+
jekyll-theme-hydejack (~> 9.1)
92+
webrick (~> 1.7)
93+
94+
BUNDLED WITH
95+
2.4.10

vercel.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"buildCommand": "./build.sh",
2+
"buildCommand": "bundle install --jobs 4 --retry 3 && JEKYLL_ENV=production bundle exec jekyll build --trace",
33
"outputDirectory": "_site",
4-
"installCommand": "echo 'Using build script'",
4+
"installCommand": "gem install bundler:2.4.10",
55
"framework": null
66
}

0 commit comments

Comments
 (0)