Skip to content

Commit 356b2bc

Browse files
committed
Fix: by feedback
1 parent af9ad81 commit 356b2bc

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

app/globals.css

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
@import "../coderabbit_nextjs/node_modules/tailwindcss";
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
24

35
:root {
46
--background: #ffffff;
57
--foreground: #171717;
68
}
79

8-
@theme inline {
10+
:root {
911
--color-background: var(--background);
1012
--color-foreground: var(--foreground);
1113
--font-sans: var(--font-geist-sans);

next.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NextConfig } from "next";
1+
import { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
44
/* config options here */

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "coderabbit_nextjs/node_modules/.bin/next dev --turbopack",
7-
"build": "coderabbit_nextjs/node_modules/.bin/next build",
8-
"start": "coderabbit_nextjs/node_modules/.bin/next start",
9-
"lint": "coderabbit_nextjs/node_modules/.bin/next lint"
6+
"dev": "node_modules/.bin/next dev --turbopack",
7+
"build": "node_modules/.bin/next build",
8+
"start": "node_modules/.bin/next start",
9+
"lint": "node_modules/.bin/next lint"
1010
},
1111
"dependencies": {
1212
"react": "^19.0.0",

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"include": [
2626
"next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2727
"exclude": [
28-
"coderabbit_nextjs/node_modules"
28+
"node_modules"
2929
]
3030
}

0 commit comments

Comments
 (0)