We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c452c5f commit 57027b2Copy full SHA for 57027b2
1 file changed
docs/4-advanced/05-integration-and-deployment/index.mdx
@@ -69,7 +69,9 @@ Reactによって作成されたブラウザ上で動くアプリケーション
69
70
const app = express();
71
72
- const adapter = new PrismaPg({ connectionString: process.env.DATABASE_URL });
+ const adapter = new PrismaPg({
73
+ connectionString: process.env.DATABASE_URL,
74
+ });
75
const client = new PrismaClient({ adapter });
76
77
app.use(express.json());
@@ -102,7 +104,9 @@ Reactによって作成されたブラウザ上で動くアプリケーション
102
104
103
105
106
107
108
109
110
111
112
0 commit comments