Skip to content

Commit 31dc7bd

Browse files
authored
Merge pull request #2 from gitgitWi/nextjs/v1
Build: Change Framework from Jekyll to Next.js
2 parents a72c542 + 5bd4759 commit 31dc7bd

File tree

186 files changed

+9841
-83542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+9841
-83542
lines changed

.eslintrc.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: [
7+
"eslint:recommended",
8+
"plugin:react/recommended",
9+
"plugin:@typescript-eslint/recommended",
10+
"plugin:prettier/recommended",
11+
],
12+
parser: "@typescript-eslint/parser",
13+
parserOptions: {
14+
ecmaFeatures: {
15+
jsx: true,
16+
},
17+
ecmaVersion: 12,
18+
sourceType: "module",
19+
},
20+
plugins: ["react", "@typescript-eslint", "prettier"],
21+
rules: {
22+
"react/jsx-uses-react": "off",
23+
"react/react-in-jsx-scope": "off",
24+
"react/prop-types": "off",
25+
"react/require-default-props": "off",
26+
"@typescript-eslint/explicit-module-boundary-types": "off",
27+
},
28+
};

.gitignore

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
12

2-
LN-0402-홍대입구역-APT-시세-조회-by-using-Google-maps-API/lectrue0402-googlemap-api_files/figure-gfm/unnamed-chunk-24-1.png
3-
LN-0402-홍대입구역-APT-시세-조회-by-using-Google-maps-API/lectrue0402-googlemap-api_files/figure-gfm/unnamed-chunk-25-1.png
4-
LN-0402-홍대입구역-APT-시세-조회-by-using-Google-maps-API/lectrue0402-googlemap-api_files/figure-gfm/unnamed-chunk-27-1.png
5-
LN-0402-홍대입구역-APT-시세-조회-by-using-Google-maps-API/lectrue0402-googlemap-api_files/figure-gfm/unnamed-chunk-28-1.png
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
14+
# production
15+
/build
16+
17+
# misc
18+
.DS_Store
19+
*.pem
20+
21+
# debug
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# local env files
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
31+
32+
# vercel
33+
.vercel
34+
node_modules

0 commit comments

Comments
 (0)