Skip to content

Commit 65dded4

Browse files
committed
🎉 frontend intialised
intialised frontend
1 parent 20c553e commit 65dded4

File tree

5 files changed

+320
-9
lines changed

5 files changed

+320
-9
lines changed

Diff for: package.json

+3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@
1717
"@types/node": "18.7.23",
1818
"@types/react": "18.0.21",
1919
"@types/react-dom": "18.0.6",
20+
"autoprefixer": "^10.4.12",
2021
"eslint": "8.24.0",
2122
"eslint-config-next": "12.3.1",
23+
"postcss": "^8.4.16",
24+
"tailwindcss": "^3.1.8",
2225
"typescript": "4.8.3"
2326
}
2427
}

Diff for: 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+
}

Diff for: styles/globals.css

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
14
html,
25
body {
36
padding: 0;

Diff for: tailwind.config.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: [
4+
"./pages/**/*.{js,ts,jsx,tsx}",
5+
"./components/**/*.{js,ts,jsx,tsx}",
6+
],
7+
theme: {
8+
extend: {},
9+
},
10+
plugins: [],
11+
}

0 commit comments

Comments
 (0)