installed tailwindcss

This commit is contained in:
Ghostie 2024-08-19 16:49:51 -05:00
parent 5b8c3e40d2
commit 400c6fffae
6 changed files with 2598 additions and 1 deletions

2572
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,8 +6,11 @@
"build": "vite build"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"axios": "^1.6.4",
"laravel-vite-plugin": "^1.0",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"vite": "^5.0"
}
}

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

View File

@ -6,10 +6,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@yield('title') | DevStagram</title>
@vite('resources/css/app.css')
</head>
<body>
</body>
</html>

12
tailwind.config.js Normal file
View File

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/views/**/*.blade.php",
"./resources/views/**/*.js",
"./resources/views/**/*.vue",
],
theme: {
extend: {},
},
plugins: [],
};