2.0.0 • Published 3 years ago

@calmery-chan/aleph-plugin-tailwindcss v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@calmery-chan/aleph-plugin-tailwindcss

@calmery-chan/aleph-plugin-tailwindcss - npm Lint Commitizen Friendly

A plugin for using Tailwind CSS with Aleph.js.

Usage

Please install Node.js and run it.

// aleph.config.ts

import type { Config } from "https://deno.land/x/aleph@v0.3.0-beta.19/types.d.ts";
import tailwindcss from "https://deno.land/x/calmery_chan_aleph_plugin_tailwindcss/plugin.ts";

export default <Config> {
  plugins: [tailwindcss],
};
// tailwind.config.js

module.exports = {
  purge: ["./src/**/*.tsx"],
};

See example.