Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/josh-taylor/tailwind-styleguide

Laravel Mix plugin for generating a styleguide for your Tailwind project
https://github.com/josh-taylor/tailwind-styleguide

laravel-mix laravel-mix-plugin styleguide styleguide-css tailwindcss tailwindcss-plugin

Last synced: about 2 months ago
JSON representation

Laravel Mix plugin for generating a styleguide for your Tailwind project

Awesome Lists containing this project

README

        

# Tailwind Styleguide for Laravel Mix

This extension adds a styleguide for your Tailwind apps in Mix.

![Tailwind Styleguide](/screenshot.png?raw=true)

## Usage

First install the extension

```sh
npm install laravel-mix-talilwind-styleguide
```

Then you can require it within your `webpack.mix.js` file

```js
let mix = require('laravel-mix');

require('laravel-mix-tailwind-styleguide');

mix.js('resources/assets/js/app.js', 'public/js')
.sass('resources/assets/sass/app.scss', 'public/css')
.tailwindStyleguide();
```

Once this has been done, running either `npm run watch` or `npm run dev` will start up a local HTTP server at
[http://localhost:8888/](http://localhost:8888/).