Skip to content

Commit

Permalink
[#192]
Browse files Browse the repository at this point in the history
Set default color from _document.js
Fix the ul li key warning
  • Loading branch information
tommyttf authored and pauljaijai committed Nov 6, 2023
1 parent 26abeac commit 0f24866
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
17 changes: 13 additions & 4 deletions client/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,33 @@
"prettier",
"plugin:tailwindcss/recommended"
],
"plugins": ["tailwindcss"],
"plugins": [
"tailwindcss"
],
"rules": {
"@next/next/no-html-link-for-pages": "off",
"react/jsx-key": "off",
"tailwindcss/no-custom-classname": "off"
},
"settings": {
"tailwindcss": {
"callees": ["cn"],
"callees": [
"cn"
],
"config": "tailwind.config.js"
},
"next": {
"rootDir": ["./"]
"rootDir": [
"./"
]
}
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"files": [
"*.ts",
"*.tsx"
],
"parser": "@typescript-eslint/parser"
}
]
Expand Down
4 changes: 4 additions & 0 deletions client/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ import { SiteHeader } from "@/components/site-header"
import { TailwindIndicator } from "@/components/tailwind-indicator"
import { ThemeProvider } from "@/components/theme-provider"





export const metadata: Metadata = {
manifest: "../manifest.json",
title: {
Expand Down

0 comments on commit 0f24866

Please sign in to comment.