Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Easily Integrate Tailwindcss into your Varie project

Notifications You must be signed in to change notification settings

variejs/tailwincss-builder-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tailwincss-builder-plugin

Getting Started

npm install varie-bundler-tailwindcss-plugin --save-dev

Then Insert the plugin into your webpack.json.ts file :

import { WebBundler } from "varie-bundler";
import TailwindCssPlugin from "varie-bundler-tailwindcss-plugin";

export default function(env) {
  return new WebBundler(env, {
    vue: {
      runtimeOnly: false
    }
  })
    .entry("app", ["app/app.ts", "resources/sass/app.scss"])
    .plugin(TailwindCssPlugin)
    .build();
}

Refer to the tailwindcss docunmtation to setup adding tailwind to your css.

About

Easily Integrate Tailwindcss into your Varie project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published