Skip to content

Commit

Permalink
Merge pull request #2 from brunosllz/ui
Browse files Browse the repository at this point in the history
feat: Implement UI
  • Loading branch information
kodiakhq[bot] committed Nov 19, 2023
2 parents 28f5107 + 5070431 commit cd745bb
Show file tree
Hide file tree
Showing 160 changed files with 20,734 additions and 6,162 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.d.ts
*.d.ts
tsconfig.json
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"next/core-web-vitals"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
"@typescript-eslint/no-non-null-assertion": "off",
"@next/next/no-img-element": "off"
}
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"headerslist"
]
}
14 changes: 13 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
reactStrictMode: false,
experimental: {
serverActions: true,
},
images: {
domains: [
'github.com',
'pub-bc782eff834b482cb97f4e08b853eb2a.r2.dev',
'avatars.githubusercontent.com',
],
},
}

module.exports = nextConfig
Loading

0 comments on commit cd745bb

Please sign in to comment.