Tailwind CSS is a utility first CSS framework for building custom web designs.
The utility consists of a lot of CSS classes and is usually configured via PostCSS to include these class names and styles into the project.
Here, we will look at how to go about this configuration on a project generated with Preact CLI.
Setup Preact CLI project
npx preact-cli create default my-project
Installing Tailwind CSS.
npm i tailwindcss
# OR
yarn add tailwindcss
Configuring PostCSS loader to use Tailwind.
PreactCLI default setup already uses PostCSS and to keep using the same loaders we have to modify the existing configuration. Fortunately for us, this is pretty easy with Preact CLI.
Create a preact.config.js
at the root of your application.
Preact CLI exposes a bunch of helper functions to help us manipulate the configuration and here we will use getLoadersByName
to access all instances of PostCSS loader in the configuration.
module.exports = (config, env, helpers) => {
const postCssLoaders = helpers.getLoadersByName(config, "postcss-loader");
postCssLoaders.forEach(({ loader }) => {
const plugins = loader.options.plugins;
// Add tailwind css at the top.
plugins.unshift(require("tailwindcss"));
});
return config;
};
Now that Tailwind is added to the PostCSS configuration, you can follow the Step 2 and Step 3 on Getting Started page on Tailwind site to start using the classes.
Tailwind by adding all utilities adds too much of size onto your project, especially when you might not be using half of it. This is where the magic with PurgeCSS comes into picture.
Adding purge css as a postcss plugin helps us get rid of styles that we are not using on our project, essentially purging them.
npm i @fullhuman/postcss-purgecss --save-dev
# OR
yarn add @fullhuman/postcss-purgecss --dev
To add to your preact.config.js
:
module.exports = (config, env, helpers, params = defaultParams) => {
const purgecss = require("@fullhuman/postcss-purgecss")({
// Specify the paths to all of the template files in your project
content: ["./src/**/*.js"],
// Include any special characters you're using in this regular expression
defaultExtractor: (content) => content.match(params.regex) || [],
});
const postCssLoaders = helpers.getLoadersByName(config, "postcss-loader");
postCssLoaders.forEach(({ loader }) => {
const plugins = loader.options.plugins;
// Add tailwind css at the top.
plugins.unshift(require("tailwindcss"));
// Add PurgeCSS only in production.
if (env.production) {
plugins.push(purgecss);
}
});
return config;
};
PurgeCSS plugin code and explanation is provided on the docs for Tailwind.
And we are done. 🥳
npm i preact-cli-tailwind --save-dev
# OR
yarn add preact-cli-tailwind --dev
In your preact.config.js:
const tailwind = require("preact-cli-tailwind");
module.exports = (config, env, helpers) => {
config = tailwind(config, env, helpers);
return config;
};
You can find the docs and plugin on Github .