-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 964 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Next.js App</title>
<!-- You can add external CSS or meta tags here -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- This container is where your Next.js app will be hydrated if using client-side scripts -->
<div id="__next">
<!-- You can optionally include a loading message or fallback content here -->
<noscript>Please enable JavaScript to view the app.</noscript>
</div>
<!--
If you have a static export (using next export) the build process will generate
the necessary JavaScript bundles. These script paths are just placeholders and
will need to match your export output.
-->
<script src="/_next/static/chunks/webpack.js"></script>
<script src="/_next/static/chunks/main.js"></script>
</body>
</html>