Browse Source

Upload files to ''

master
ayan.ghoshal 5 days ago
parent
commit
bdb2420e38
5 changed files with 70 additions and 0 deletions
  1. +1
    -0
      .env.development
  2. +41
    -0
      .gitignore
  3. +16
    -0
      eslint.config.mjs
  4. +5
    -0
      next-env.d.ts
  5. +7
    -0
      next.config.ts

+ 1
- 0
.env.development View File

@ -0,0 +1 @@
NEXT_PUBLIC_BASE_URL = http://localhost:8000/api

+ 41
- 0
.gitignore View File

@ -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

+ 16
- 0
eslint.config.mjs View File

@ -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;

+ 5
- 0
next-env.d.ts View File

@ -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.

+ 7
- 0
next.config.ts View File

@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;

Loading…
Cancel
Save