Skip to content

Commit

Permalink
nextjs migration
Browse files Browse the repository at this point in the history
  • Loading branch information
flygare committed Sep 23, 2023
1 parent 3e408e1 commit b43963c
Show file tree
Hide file tree
Showing 33 changed files with 2,523 additions and 25,827 deletions.
20 changes: 0 additions & 20 deletions .eslintrc.js

This file was deleted.

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"
}
20 changes: 15 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,28 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

.vscode
# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
## Available Scripts
## Getting Started

### `npm start`
Run the development server:

Runs the app in the development mode

### `npm test`

Runs the unit tests

### `npm deploy`

Deploy the page
```bash
pnpm dev
```
4 changes: 4 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

module.exports = nextConfig;
Loading

0 comments on commit b43963c

Please sign in to comment.