Answers for "how to use tailwind css in your laravel project"

CSS
0

how to chose tailwindcss while creating larevel project

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link href="/css/app.css" rel="stylesheet">
</head>
Posted by: Guest on June-23-2021
0

how to chose tailwindcss while creating larevel project

@tailwind base;
@tailwind components;
@tailwind utilities;
Posted by: Guest on June-23-2021
0

how to chose tailwindcss while creating larevel project

purge: [
    './storage/framework/views/*.php',
    './resources/**/*.blade.php',
    './resources/**/*.js',
    './resources/**/*.vue',
],
Posted by: Guest on June-23-2021

Code answers related to "how to use tailwind css in your laravel project"

Browse Popular Code Answers by Language