Skip to content

Commit

Permalink
chore: add tailwind config files
Browse files Browse the repository at this point in the history
I forgot adding these file in git at #9
  • Loading branch information
turtton committed Feb 9, 2023
1 parent 9bd8ce6 commit 09963d9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
11 changes: 11 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/** @type {import("tailwindcss").Config} */
module.exports = {
mode: "jit",
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};

0 comments on commit 09963d9

Please sign in to comment.