tailwindcss with django
cd your-django-folder; mkdir jstoolchain; cd jstoolchain
npm install tailwindcss postcss-cli autoprefixer
npx tailwind init
touch postcss.config.js
tailwindcss with django
cd your-django-folder; mkdir jstoolchain; cd jstoolchain
npm install tailwindcss postcss-cli autoprefixer
npx tailwind init
touch postcss.config.js
tailwindcss with django
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer')
]
}
tailwindcss with django
<head>
<link rel="stylesheet" href="{% static "css/tailwind-output.css" %}">
</head>
tailwindcss with django
mkdir css; touch css/tailwind.css
tailwindcss with django
"build": "postcss css/tailwind.css -o ../your-django-folder/your-path-to-static/css/tailwind-output.css",
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us