Skip to content

Commit

Permalink
run bundle exec jekyll clean
Browse files Browse the repository at this point in the history
  • Loading branch information
ElviaBth committed May 17, 2024
1 parent 7c18e5d commit b38d684
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ telegram_username: openpoke
# Build settings
theme: minima
plugins:
- jekyll-feed
- jekyll-postcss

postcss:
Expand Down
14 changes: 6 additions & 8 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer'),
...(process.env.JEKYLL_ENV == 'production'
? [require('cssnano')({ preset: 'default' })]
: [])
]
}
plugins: [
require('tailwindcss'),
require('autoprefixer'),
...(process.env.JEKYLL_ENV === 'production' ? [require('cssnano')({ preset: 'default' })] : [])
]
};

0 comments on commit b38d684

Please sign in to comment.