Skip to content

Commit a23363b

Browse files
author
Sadanand Pai
committed
Website: NextJS - Init
1 parent bd1a176 commit a23363b

31 files changed

+14964
-1
lines changed

.gitignore

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
1-
.DS_Store
1+
/node_modules
2+
/.pnp
3+
.pnp.js
4+
5+
# testing
6+
/coverage
7+
8+
# next.js
9+
/.next/
10+
/out/
11+
12+
# production
13+
/build
14+
15+
# misc
16+
*.pem
17+
18+
# debug
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
23+
# local env files
24+
.env*.local
25+
26+
# vercel
27+
.vercel
28+
29+
# typescript
30+
*.tsbuildinfo
31+
next-env.d.ts

web/.DS_Store

6 KB
Binary file not shown.

web/.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/node_modules
2+
/.pnp
3+
.pnp.js
4+
5+
# testing
6+
/coverage
7+
8+
# next.js
9+
/.next/
10+
/out/
11+
12+
# production
13+
/build
14+
15+
# misc
16+
*.pem
17+
18+
# debug
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
23+
# local env files
24+
.env*.local
25+
26+
# vercel
27+
.vercel
28+
29+
# typescript
30+
*.tsbuildinfo
31+
next-env.d.ts

web/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Getting Started
2+
3+
First, run the development server:
4+
5+
```bash
6+
npm install
7+
npm run dev
8+
# or
9+
yarn
10+
yarn dev
11+
# or
12+
pnpm install
13+
pnpm dev
14+
```
15+
16+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
17+
18+
## Tech stack
19+
20+
The project is built using [Nextra](https://nextra.site/)

web/next.config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
reactStrictMode: true,
4+
images: {
5+
domains: ["*"],
6+
},
7+
};
8+
9+
const withNextra = require("nextra")({
10+
theme: "nextra-theme-docs",
11+
themeConfig: "./theme.config.jsx",
12+
});
13+
14+
module.exports = withNextra({
15+
images: {
16+
domains: ["github.com"],
17+
},
18+
});

0 commit comments

Comments
 (0)