Skip to content

Commit

Permalink
Change script pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleA99 committed Oct 2, 2023
1 parent d5f63fe commit 18e3a4f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.vscode/
.vscode/

node_modules/
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<script src="/js/clearGrid.js" type="module" defer></script>
<script src="/js/promptGridSize.js" type="module" defer></script>
<script src="/js/createGrid.js" type="module" defer></script>
<script src="/js/calculateDarkenedColor.js" type="module" defer></script>
<script src="/js/darkenColor.js" type="module" defer></script>
<script src="/js/main.js" type="module" defer></script>
<script src="./js/clearGrid.js" type="module" defer></script>
<script src="./js/promptGridSize.js" type="module" defer></script>
<script src="./js/createGrid.js" type="module" defer></script>
<script src="./js/calculateDarkenedColor.js" type="module" defer></script>
<script src="./js/darkenColor.js" type="module" defer></script>
<script src="./js/main.js" type="module" defer></script>
</head>

<body>
Expand Down

0 comments on commit 18e3a4f

Please sign in to comment.