Skip to content

Instantly share code, notes, and snippets.

View ryangjchandler's full-sized avatar
💭
I may be slow to respond.

Ryan Chandler ryangjchandler

💭
I may be slow to respond.
View GitHub Profile
@ryangjchandler
ryangjchandler / setup-tailwind.recipe
Last active February 19, 2024 17:46
Setup Tailwind in a Laravel project
# Install Tailwind
npm i tailwindcss autoprefixer -D
# Create a Tailwind configuration file
npx tailwindcss init -p
# Setup the CSS file
cat <<EOF > ./resources/css/app.css
@tailwind base;
@tailwind components;