See the Pen Tailwind Menu by Zeeshan Hayat (@zeenux) on CodePen.
Discover the latest in technology news and insights at Code Chronicles - your go-to source for coding tutorials, tech reviews, and more
Tailwind with Laravel 8
Install Tailwind in Laravel 8
Install Laravel
laravel new tailwindcss-demo
Fetch Dependencies
npm install
Install tailwindcss
This will fetch the required dependencies and will install tailwindcss on your project
npm install tailwindcss
Add Tailwindcss
Add the following to resources/css/app.css
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
Create your tailwindcss config file
npx tailwindcss init
Add the following to webpack.mix.js file
mix.js('resources/js/app.js', 'public/js')
.postCss('resources/css/app.css', 'public/css', [
require('tailwindcss'),
]);
Compile
npm run dev
Add the style sheet to your blade file
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
That's it. Now you can start using tailwindcss in your laravel blade files
Subscribe to:
Posts (Atom)
Unleashing the Power of NumPy Arrays: A Guide for Data Wranglers
Ever feel like wrestling with data in Python using clunky loops? NumPy comes to the rescue! This blog post will unveil the magic of NumPy a...
-
Ever feel like wrestling with data in Python using clunky loops? NumPy comes to the rescue! This blog post will unveil the magic of NumPy a...
-
Here is a simple way to load and Update data using Datagridview in C#. 1) Drag a datagridview on your form. 2) Drag two buttons one butt...
-
MapReduce is a core component of the Apache Hadoop software framework. The MapReduce components as the name implies Maps and Reduces . It d...