config tailwind

This commit is contained in:
2023-08-23 01:06:30 +05:30
parent d5e535e95c
commit 90d6b750c3
4 changed files with 23 additions and 0 deletions

6
postcss.config.js Normal file
View File

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

3
src/app.css Normal file
View File

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

View File

@@ -0,0 +1,5 @@
<script>
import "../app.css";
</script>
<slot></slot>

9
tailwind.config.js Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/{*.{html,ts,js,svelte}'],
theme: {
extend: {},
},
plugins: [],
}