Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
*.gem

# yarn
.yarn/*
.yarnrc.yml
.pnp.*
node_modules/
yarn-error.log
yarn-debug.log*
# Ignore metadata generated by Jekyll
build/
_site/
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ group :jekyll_plugins do
gem 'jekyll-gist', '~> 1.5.0'
gem 'jekyll-seo-tag', '~> 2.8.0'
gem 'jekyll-sitemap', '~> 1.4.0'

gem 'jekyll-postcss-v2'
# gem 'jekyll-admin', '~> 0.11.1'
end

Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ GEM
jekyll-gist (1.5.0)
octokit (~> 4.2)
jekyll-paginate (1.1.0)
jekyll-postcss-v2 (1.0.2)
jekyll-sass-converter (3.1.0)
sass-embedded (~> 1.75)
jekyll-seo-tag (2.8.0)
Expand Down Expand Up @@ -142,6 +143,7 @@ DEPENDENCIES
jekyll-feed (~> 0.17.0)
jekyll-gist (~> 1.5.0)
jekyll-paginate (~> 1.1.0)
jekyll-postcss-v2
jekyll-seo-tag (~> 2.8.0)
jekyll-sitemap (~> 1.4.0)
jgd (~> 1.14.0)
Expand Down
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ plugins:
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-feed
- jekyll-postcss-v2

# jekyll admin is causing issues with github pages, so it's disabled by default
# - jekyll-admin
Expand Down Expand Up @@ -196,6 +197,9 @@ sass:
sass_dir: _sass
style: compressed

postcss:
cache: false

exclude:
- .sass-cache/
- .jekyll-cache/
Expand Down
6 changes: 6 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
---

@import "tailwindcss";

@config "../../tailwind.config.js";
8 changes: 0 additions & 8 deletions assets/css/main.scss

This file was deleted.

11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"packageManager": "[email protected]",
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.16",
"@tailwindcss/typography": "^0.5.16",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.1.16"
}
}
5 changes: 5 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
plugins: {
"@tailwindcss/postcss": {},
},
};
6 changes: 6 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
content: ["./**/*.html"],
theme: {
extend: {},
},
};
Loading
Loading