Skip to content

Commit 073295a

Browse files
committed
add postcss
1 parent 01d2fda commit 073295a

File tree

5 files changed

+14
-51
lines changed

5 files changed

+14
-51
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,7 @@ next-env.d.ts
4141

4242
generated/
4343
generated
44-
.cache/
44+
.cache/
45+
46+
.vscode
47+
.vscode/

package-lock.json

+2-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"@radix-ui/colors": "^3.0.0",
1717
"@radix-ui/react-dropdown-menu": "^2.0.6",
1818
"@radix-ui/react-slot": "^1.0.2",
19-
"@radix-ui/react-tabs": "^1.0.4",
2019
"@vercel/analytics": "^1.1.1",
2120
"class-variance-authority": "^0.7.0",
2221
"clsx": "^2.0.0",
@@ -27,6 +26,7 @@
2726
"next": "13.5.4",
2827
"next-contentlayer": "^0.3.4",
2928
"next-themes": "^0.2.1",
29+
"postcss": "^8.4.31",
3030
"react": "^18",
3131
"react-dom": "^18",
3232
"react-icons": "^4.11.0",
@@ -47,7 +47,7 @@
4747
"eslint-config-next": "13.5.4",
4848
"mini-css-extract-plugin": "^2.7.6",
4949
"prisma": "^5.4.2",
50-
"tailwindcss": "^3",
50+
"tailwindcss": "^3.3.3",
5151
"typescript": "^5"
5252
}
5353
}

postcss.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}
File renamed without changes.

0 commit comments

Comments
 (0)