commit a8dd2af60f4bd1e12858d6d5d1e817548583b372 parent b724619f018a23476be6ea095e8258ae8dea85bd Author: Andreas Gruhler <andreas.gruhler@adfinis.com> Date: Thu, 19 Sep 2024 13:42:34 +0200 feat(api): create src/frontend subfolder Diffstat:
15 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.html b/index.html @@ -15,6 +15,6 @@ <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> - <script type="module" src="/src/main.jsx"></script> + <script type="module" src="/src/frontend/main.jsx"></script> </body> </html> diff --git a/src/App.css b/src/frontend/App.css diff --git a/src/App.jsx b/src/frontend/App.jsx diff --git a/src/Athletes.jsx b/src/frontend/Athletes.jsx diff --git a/src/Auth.jsx b/src/frontend/Auth.jsx diff --git a/src/AuthVerify.jsx b/src/frontend/AuthVerify.jsx diff --git a/src/Heats.jsx b/src/frontend/Heats.jsx diff --git a/src/Leaderboard.jsx b/src/frontend/Leaderboard.jsx diff --git a/src/Score.jsx b/src/frontend/Score.jsx diff --git a/src/Settings.jsx b/src/frontend/Settings.jsx diff --git a/src/Startlist.jsx b/src/frontend/Startlist.jsx diff --git a/src/index.css b/src/frontend/index.css diff --git a/src/main.jsx b/src/frontend/main.jsx diff --git a/src/supabaseClient.js b/src/frontend/supabaseClient.js diff --git a/src/utils.js b/src/frontend/utils.js