Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
splatboydev committed Jan 14, 2023
0 parents commit 8293c32
Show file tree
Hide file tree
Showing 29 changed files with 7,895 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.next/
14 changes: 14 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"grammarly.overrides": [
{
"files": ["**/README.md"],
"config": {
"audience": "expert",
"dialect": "american",
"domain": "technical",
"emotions": ["analytical"],
"goals": ["inform", "describe"]
}
}
]
}
5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
12 changes: 12 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/**
* @type {import('next').NextConfig}
*/

const nextConfig = {
reactStrictMode: true,
images: {
unoptimized: true,
},
}

module.exports = nextConfig
Loading

0 comments on commit 8293c32

Please sign in to comment.