Skip to content

Commit ab273d9

Browse files
author
Your Name
committed
Initial commit — GhzHost NextGen 2150
0 parents  commit ab273d9

27 files changed

Lines changed: 9595 additions & 0 deletions

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules/
2+
.next/
3+
out/
4+
.env*
5+
!.env.example
6+
*.log
7+
.DS_Store
8+
dist/
9+
build/

jsconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"@/*": ["./src/*"]
6+
}
7+
}
8+
}

next.config.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
turbopack: {
4+
root: "C:\\Users\\Patrick\\ghzhost-nextgen",
5+
},
6+
}
7+
8+
export default nextConfig

0 commit comments

Comments
 (0)