From 557b5cc2717be206460cd88e1c1ed9f205f947d7 Mon Sep 17 00:00:00 2001 From: Dm1tr1y147 Date: Sat, 28 Nov 2020 13:11:41 +0500 Subject: [PATCH] Restructure --- .gitignore | 6 +++--- {hooks => front/hooks}/counter.js | 0 jsconfig.json => front/jsconfig.json | 0 next-env.d.ts => front/next-env.d.ts | 0 package.json => front/package.json | 0 {pages => front/pages}/_app.tsx | 0 {public => front/public}/favicon.ico | Bin {public => front/public}/vercel.svg | 0 tsconfig.json => front/tsconfig.json | 0 yarn.lock => front/yarn.lock | 0 10 files changed, 3 insertions(+), 3 deletions(-) rename {hooks => front/hooks}/counter.js (100%) rename jsconfig.json => front/jsconfig.json (100%) rename next-env.d.ts => front/next-env.d.ts (100%) rename package.json => front/package.json (100%) rename {pages => front/pages}/_app.tsx (100%) rename {public => front/public}/favicon.ico (100%) rename {public => front/public}/vercel.svg (100%) rename tsconfig.json => front/tsconfig.json (100%) rename yarn.lock => front/yarn.lock (100%) diff --git a/.gitignore b/.gitignore index f549c3e..23d25ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -/node_modules +node_modules/ /.pnp .pnp.js @@ -9,11 +9,11 @@ /coverage # next.js -/.next/ +.next/ /out/ # production -/build +build/ # misc .DS_Store diff --git a/hooks/counter.js b/front/hooks/counter.js similarity index 100% rename from hooks/counter.js rename to front/hooks/counter.js diff --git a/jsconfig.json b/front/jsconfig.json similarity index 100% rename from jsconfig.json rename to front/jsconfig.json diff --git a/next-env.d.ts b/front/next-env.d.ts similarity index 100% rename from next-env.d.ts rename to front/next-env.d.ts diff --git a/package.json b/front/package.json similarity index 100% rename from package.json rename to front/package.json diff --git a/pages/_app.tsx b/front/pages/_app.tsx similarity index 100% rename from pages/_app.tsx rename to front/pages/_app.tsx diff --git a/public/favicon.ico b/front/public/favicon.ico similarity index 100% rename from public/favicon.ico rename to front/public/favicon.ico diff --git a/public/vercel.svg b/front/public/vercel.svg similarity index 100% rename from public/vercel.svg rename to front/public/vercel.svg diff --git a/tsconfig.json b/front/tsconfig.json similarity index 100% rename from tsconfig.json rename to front/tsconfig.json diff --git a/yarn.lock b/front/yarn.lock similarity index 100% rename from yarn.lock rename to front/yarn.lock