jekyll-tailwind-template

jekyll-tailwind-template

A Jekyll starter project that comes with Tailwind support out of the box

Jekyll with Tailwind

About

This project uses jekyll-postcss to compile Tailwind CSS for you.

You can use any PostCSS plugin by installing it with yarn or npm and adding it to your postcss.config.js.

The jekyll-purgecss plugin is used to integrate Purgecss (only in production).

Installation

Requirements

  • Ruby
  • Yarn and Node.js

Install project dependencies

$ bundle config set --local path vendor/bundle
$ bundle install
$ yarn install

Usage

Start dev server

$ bundle exec jekyll serve --trace --livereload

Build for production

$ JEKYLL_ENV=production bundle exec jekyll build --trace

Configuration

In a new project, setup your config files as below.

Gemfile

Add these gems to your Gemfile. By using the plugins group as below, they will be enabled without being added to plugins in your config.

group :jekyll_plugins do
  gem "jekyll-postcss"
  gem "jekyll-purgecss"
end

package.json

Update the version numbers to whatever is currently latest.

{
  "devDependencies": {
    "autoprefixer": "^9.3.1",
    "postcss-cli": "^6.0.1",
    "postcss-import": "^12.0.1",
    "purgecss": "^1.1.0",
    "tailwindcss": "^1.0.0"
  }
}

postcss.config.js

module.exports = {
  plugins: [
    require("postcss-import"),
    require("tailwindcss")("./_includes/tailwind.config.js"),
    require("autoprefixer")
  ]
}

purgecss.config.js

module.exports = {
  content: ["./_site/**/*.html"],
  css: ["./_site/css/site.css"],
  defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
};

tailwind.config.js

$ yarn run tailwind init _includes/tailwind.config.js
jekyll logo

Want a Jekyll website built?

Hire a Jekyll developer