Skip to content

Commit

Permalink
adding-tailwind-vite
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaMajmudar committed Jul 10, 2024
1 parent 7853435 commit eb6e123
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/vite-template/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
11 changes: 11 additions & 0 deletions apps/vite-template/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}

0 comments on commit eb6e123

Please sign in to comment.