Skip to content

Commit

Permalink
performance improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsboost committed Aug 6, 2024
1 parent d58c16e commit 968f077
Show file tree
Hide file tree
Showing 8 changed files with 1,699 additions and 8 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified go/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion go/dist/App.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions go/dist/App.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions go/dist/main.css

Large diffs are not rendered by default.

1,683 changes: 1,683 additions & 0 deletions go/dist/main.js

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions go/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
<!-- <link rel="stylesheet" href="libraries/pico/pico.classless.css"> -->
<!-- <link rel="stylesheet" href="libraries/pico/pico.classless.mod.css">
<script src="libraries/tailwind/tailwind-mod-noreset.min.js"></script> -->
<link rel="stylesheet" href="dist/style.min.css">
<link rel="stylesheet" href="dist/editor.min.css">
<!-- <link rel="stylesheet" href="dist/style.min.css">
<link rel="stylesheet" href="dist/editor.min.css"> -->
<link rel="stylesheet" href="dist/main.css">
</head>
<body>
<header class="absolute inset-0 text-center grid grid-cols-1 items-center">
Expand All @@ -41,8 +42,9 @@ <h2 class="text-[#ffffff00]">kodeWeave is your on the go coding playground! Desi

<!-- Load Application Script -->
<!-- <script id="appScript" src="src/App.js"></script> -->
<script id="appScript" src="dist/App.js"></script>
<script src="dist/editor.js"></script>
<!-- <script id="appScript" src="dist/App.js"></script>
<script src="dist/editor.js"></script> -->
<script src="dist/main.js"></script>
<script src="https://storage.googleapis.com/workbox-cdn/releases/6.4.1/workbox-sw.js"></script>
<script>
// service worker for progressive web app
Expand Down
2 changes: 1 addition & 1 deletion go/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ const App = {
onclick="newProject('${name}')">
<div class="${buttonContentClass}">
<div class="${imageContentClass}">
<img width="256" height="256" src="imgs/frameworks/${name}.svg" alt="${name}" />
<img loading="lazy" width="256" height="256" src="imgs/frameworks/${name}.svg" alt="${name}" />
</div>
<div class="${textContentClass}">
${name}
Expand Down

0 comments on commit 968f077

Please sign in to comment.