We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13797f commit 95f9aabCopy full SHA for 95f9aab
.eslintignore
@@ -1,4 +1,6 @@
1
next-env.d.ts
2
.next
3
.eslintrc.js
4
-next.config.js
+*.config.js
5
+# next.config.js
6
+# tailwind.config.js
pages/index.tsx
@@ -11,6 +11,15 @@ import Layout from "~/components/Layout";
11
import { ErrorTypes, SchemaError } from "~/util/types";
12
13
const initial = `
14
+datasource db {
15
+ provider = "postgresql"
16
+ url = env("DATABASE_URL")
17
+}
18
+
19
+generator client {
20
+ provider = "prisma-client-js"
21
22
23
model User {
24
id Int @id @default(autoincrement())
25
createdAt DateTime @default(now())
0 commit comments