Initial commit

This commit is contained in:
Alexander Zinn
2025-10-11 22:05:40 -03:00
commit 4182ab5ec0
8 changed files with 2206 additions and 0 deletions

15
index.html Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<header>
<title>demo-requirejs</title>
<!--
Placing the requirejs script load here will block rendering it can also be placed at the end of the
body with the 'async' attribute
-->
<script data-main="scripts/main" src="scripts/requirejs.js"></script>
</header>
<body>
<h1>RequireJS Frontend DEMO</h1>
</body>
</html>