-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.3 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.3 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
<script
src="https://js.sentry-cdn.com/fd3e8df59cc937d7d2a3dae5913776b5.min.js"
crossorigin="anonymous"
></script>
<script>
Sentry.onLoad(function() {
Sentry.init({
// Tracing
tracesSampleRate: 1.0, // Capture 100% of the transactions
// Session Replay
replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
});
});
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minesweeper</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Minesweeper</h1>
<div id="game-container">
<div id="grid"></div>
<div id="controls">
<button id="new-game-btn">New Game</button>
<span id="mine-count">Mines: 10</span>
<span id="timer">Time: 0s</span>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>