├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .yarn └── releases │ └── yarn-3.1.1.cjs ├── .yarnrc.yml ├── README.md ├── next-env.d.ts ├── package.json ├── public ├── favicon.ico └── vercel.svg ├── src ├── pages │ ├── _app.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx └── server │ └── nextkit.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | .eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/.yarn/releases/yarn-3.1.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/server/nextkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/src/server/nextkit.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/nextkit-demo/HEAD/yarn.lock --------------------------------------------------------------------------------