Skip to content

Commit cdf9687

Browse files
Keeping Bootstrap 5.0 to fix issue with dropdown JS (#54)
* Keeping Bootstrap 5.0 to fix issue with dropdown JS * Add environment variable to docker-compose file
1 parent 09c9fae commit cdf9687

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ gem "webrick", "~> 1.7"
3434

3535
gem "minimal-mistakes-jekyll"
3636

37-
gem 'bootstrap', '~> 5.2.3'
37+
gem 'bootstrap', '~> 5.0.2'
3838

3939
gem 'jekyll_asset_pipeline', '~> 0.6.2'

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ GEM
2323
public_suffix (>= 2.0.2, < 5.0)
2424
autoprefixer-rails (10.4.13.0)
2525
execjs (~> 2)
26-
bootstrap (5.2.3)
26+
bootstrap (5.0.2)
2727
autoprefixer-rails (>= 9.1.0)
28-
popper_js (>= 2.11.6, < 3)
28+
popper_js (>= 2.9.2, < 3)
2929
sassc-rails (>= 2.0.0)
3030
builder (3.2.4)
3131
colorator (1.1.0)
@@ -181,7 +181,7 @@ PLATFORMS
181181
x86_64-darwin-19
182182

183183
DEPENDENCIES
184-
bootstrap (~> 5.2.3)
184+
bootstrap (~> 5.0.2)
185185
jekyll (~> 4.2.0)
186186
jekyll-category-pages
187187
jekyll-paginate-v2

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ sass:
109109
style: compressed
110110
load_paths:
111111
- ./assets/css/vendor/bootstrap
112+
sourcemap: development
112113

113114
# Defaults
114115
defaults:

docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ services:
44
jekyll:
55
image: jekyll/jekyll:latest
66
command: jekyll serve --watch --force_polling --verbose --future
7+
environment:
8+
JEKYLL_ENV: development
79
ports:
810
- 4000:4000
911
volumes:

0 commit comments

Comments
 (0)