@ -0,0 +1 @@ | |||||
NEXT_PUBLIC_BASE_URL = http://localhost:8000/api |
@ -0,0 +1,41 @@ | |||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |||||
# dependencies | |||||
/node_modules | |||||
/.pnp | |||||
.pnp.* | |||||
.yarn/* | |||||
!.yarn/patches | |||||
!.yarn/plugins | |||||
!.yarn/releases | |||||
!.yarn/versions | |||||
# testing | |||||
/coverage | |||||
# next.js | |||||
/.next/ | |||||
/out/ | |||||
# production | |||||
/build | |||||
# misc | |||||
.DS_Store | |||||
*.pem | |||||
# debug | |||||
npm-debug.log* | |||||
yarn-debug.log* | |||||
yarn-error.log* | |||||
.pnpm-debug.log* | |||||
# env files (can opt-in for committing if needed) | |||||
.env* | |||||
# vercel | |||||
.vercel | |||||
# typescript | |||||
*.tsbuildinfo | |||||
next-env.d.ts |
@ -0,0 +1,16 @@ | |||||
import { dirname } from "path"; | |||||
import { fileURLToPath } from "url"; | |||||
import { FlatCompat } from "@eslint/eslintrc"; | |||||
const __filename = fileURLToPath(import.meta.url); | |||||
const __dirname = dirname(__filename); | |||||
const compat = new FlatCompat({ | |||||
baseDirectory: __dirname, | |||||
}); | |||||
const eslintConfig = [ | |||||
...compat.extends("next/core-web-vitals", "next/typescript"), | |||||
]; | |||||
export default eslintConfig; |
@ -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/app/api-reference/config/typescript for more information. |
@ -0,0 +1,7 @@ | |||||
import type { NextConfig } from "next"; | |||||
const nextConfig: NextConfig = { | |||||
/* config options here */ | |||||
}; | |||||
export default nextConfig; |