├── .gitignore ├── .npmrc ├── README.md ├── app.vue ├── nuxt.config.ts ├── package.json ├── pages ├── index.vue └── login.vue ├── public └── favicon.ico ├── server ├── api │ └── [pokemon].ts ├── middleware │ └── auth.ts ├── routes │ └── newsletter.ts └── tsconfig.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/app.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/pages/login.vue -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /server/api/[pokemon].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/server/api/[pokemon].ts -------------------------------------------------------------------------------- /server/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/server/middleware/auth.ts -------------------------------------------------------------------------------- /server/routes/newsletter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/server/routes/newsletter.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/nuxt-3-server/HEAD/tsconfig.json --------------------------------------------------------------------------------