Skip to content

Commit 9751512

Browse files
committed
chore: add region tags
1 parent 3183bad commit 9751512

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

frontend/run/nextjs-helloworld/app/layout.jsx

+4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.;
1414

15+
// [START cloudrun_nextjs_helloworld_service]
16+
// [START run_nextjs_helloworld_service]
1517
export default function RootLayout({children}) {
1618
return (
1719
<html lang="en">
1820
<body>{children}</body>
1921
</html>
2022
);
2123
}
24+
// [END run_nextjs_helloworld_service]
25+
// [END cloudrun_nextjs_helloworld_service]

frontend/run/nextjs-helloworld/app/page.jsx

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
// [START cloudrun_nextjs_helloworld_service]
16+
// [START run_nextjs_helloworld_service]
1517
export default function Page() {
1618
return <h1>Hello, Next.js!</h1>;
1719
}
20+
// [END run_nextjs_helloworld_service]
21+
// [END cloudrun_nextjs_helloworld_service]

0 commit comments

Comments
 (0)