diff --git a/.changeset/calm-fireants-poke.md b/.changeset/calm-fireants-poke.md new file mode 100644 index 0000000..d35c4b7 --- /dev/null +++ b/.changeset/calm-fireants-poke.md @@ -0,0 +1,5 @@ +--- +"create-bsmnt-app": patch +--- + +fix missing file diff --git a/cli/template/extras/src/app/api/auth/[...nextauth]/route.ts b/cli/template/extras/src/app/api/auth/[...nextauth]/route.ts deleted file mode 100644 index 62c8bf9..0000000 --- a/cli/template/extras/src/app/api/auth/[...nextauth]/route.ts +++ /dev/null @@ -1,7 +0,0 @@ -import NextAuth from 'next-auth' - -import { authOptions } from '~/server/auth' - -// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment -const handler = NextAuth(authOptions) -export { handler as GET, handler as POST } diff --git a/cli/template/extras/src/pages/index/base.tsx b/cli/template/extras/src/pages/index/base.tsx new file mode 100644 index 0000000..1175cbf --- /dev/null +++ b/cli/template/extras/src/pages/index/base.tsx @@ -0,0 +1,47 @@ +import Head from 'next/head' +import Link from 'next/link' + +import styles from './index.module.css' + +export default function Home() { + return ( + <> + + Create T3 App + + + +
+
+

+ Create T3 App +

+
+ +

First Steps →

+
+ Just the basics - Everything you need to know to set up your + database and authentication. +
+ + +

Documentation →

+
+ Learn more about Create T3 App, the libraries it uses, and how + to deploy it. +
+ +
+
+
+ + ) +}