Skip to content

Commit

Permalink
Merge pull request #2 from ZEKE320/feature/1-nextjs-reimplementation
Browse files Browse the repository at this point in the history
Next.jsによる実装に置き換え
  • Loading branch information
ZEKE320 authored Dec 3, 2023
2 parents 3f87f82 + c59b784 commit cf4e297
Show file tree
Hide file tree
Showing 39 changed files with 4,028 additions and 7,757 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@ env:
browser: true
es2021: true
extends:
- next/core-web-vitals
- eslint:recommended
- plugin:@typescript-eslint/recommended
- plugin:react/jsx-runtime
parser: "@typescript-eslint/parser"
parserOptions:
ecmaVersion: latest
sourceType: module
plugins:
- "@typescript-eslint"
- react
- prettier
rules:
indent:
- error
- 4
- 2
linebreak-style:
- error
- warn
- windows
quotes:
- error
Expand Down
42 changes: 38 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,38 @@
node_modules
dist/
.vscode/*
!.vscode/launch.json
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

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

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

.vscode/chrome/
9 changes: 6 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Webpack: Chrome",
"name": "Next.js: Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"userDataDir": "${workspaceFolder}/.vscode/chrome/webpack"
"userDataDir": "${workspaceFolder}/.vscode/chrome/nextjs"
}
]
}
9 changes: 0 additions & 9 deletions babel.config.js

This file was deleted.

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 cf4e297

Please sign in to comment.