File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
docs/4-advanced/05-integration-and-deployment Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ Reactによって作成されたブラウザ上で動くアプリケーション
6969
7070 const app = express ();
7171
72- const adapter = new PrismaPg ({ connectionString: process .env .DATABASE_URL });
72+ const adapter = new PrismaPg ({
73+ connectionString: process .env .DATABASE_URL ,
74+ });
7375 const client = new PrismaClient ({ adapter });
7476
7577 app .use (express .json ());
@@ -102,7 +104,9 @@ Reactによって作成されたブラウザ上で動くアプリケーション
102104
103105 const app = express ();
104106
105- const adapter = new PrismaPg ({ connectionString: process .env .DATABASE_URL });
107+ const adapter = new PrismaPg ({
108+ connectionString: process .env .DATABASE_URL ,
109+ });
106110 const client = new PrismaClient ({ adapter });
107111
108112 app .use (express .json ());
You can’t perform that action at this time.
0 commit comments