diff --git a/.gitignore b/.gitignore index 10d85a5..f01e718 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ # editor .idea -.vscode # next.js specific .next diff --git a/docs/CNAME b/docs/CNAME index b313b60..fd2492a 100644 --- a/docs/CNAME +++ b/docs/CNAME @@ -1 +1 @@ -gitmoji.com \ No newline at end of file +gitmoji.com diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..ad65e0a --- /dev/null +++ b/next.config.js @@ -0,0 +1,7 @@ +module.exports = { + exportPathMap: function () { + return { + "/": { page: "/" } + } + }, +} \ No newline at end of file diff --git a/pages/index.js b/pages/index.js new file mode 100644 index 0000000..b8f93a1 --- /dev/null +++ b/pages/index.js @@ -0,0 +1 @@ +export default () => (
Welcome to next.js!
); diff --git a/pages/index.tsx b/pages/index.tsx new file mode 100644 index 0000000..7eda4a3 --- /dev/null +++ b/pages/index.tsx @@ -0,0 +1,3 @@ +export default () => ( +
Welcome to next.js!
+) \ No newline at end of file