blob: 36d549c94593888130d9b92a19b40b67bc039e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Load the script as a module</title>
</head>
<body>
<!-- crossorigin="use-credentials", because if we do an anonymous load that --
-- won't use the cache at all -->
<script id="watchme" src="file_js_cache.js" type="module"
crossorigin="use-credentials"></script>
</body>
</html>
|