From 35737b5b5f834d1cb357348a89b51e17ebf8f3a8 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Sat, 15 Aug 2026 19:39:28 +0100 Subject: [PATCH 1/3] feat: #58 removed tracking scripts --- pnpm-workspace.yaml | 4 ++++ src/app.html | 44 +++++++++++++++++--------------------------- 2 files changed, 21 insertions(+), 27 deletions(-) create mode 100644 pnpm-workspace.yaml diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..1800359 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,4 @@ +allowBuilds: + '@parcel/watcher': true + '@tailwindcss/oxide': true + esbuild: true diff --git a/src/app.html b/src/app.html index 935ffbd..89be6d0 100644 --- a/src/app.html +++ b/src/app.html @@ -1,31 +1,21 @@ - - - - - - - - - %sveltekit.head% - - + + + + + + + + %sveltekit.head% - -
%sveltekit.body%
- - + + + + +
%sveltekit.body%
+ + + \ No newline at end of file From 56e3f2e272f525601ad070d45904a097531e24d2 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Sat, 15 Aug 2026 19:42:37 +0100 Subject: [PATCH 2/3] feat: Updated submodule --- .devcontainer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer b/.devcontainer index 9ac5512..42cebf9 160000 --- a/.devcontainer +++ b/.devcontainer @@ -1 +1 @@ -Subproject commit 9ac55120cb3a628c86a91e459e37ccea7032eb7e +Subproject commit 42cebf91d54d4d24bf9f60f0205f8f2e81b2c595 From 0ec4562e5e1274fb143efa559345f4a7bfe2a8ad Mon Sep 17 00:00:00 2001 From: Luke Else Date: Sat, 15 Aug 2026 20:02:36 +0100 Subject: [PATCH 3/3] fix: Added pnpm-workspace to release stage of docker file --- dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfile b/dockerfile index dc4cec7..66fccf4 100644 --- a/dockerfile +++ b/dockerfile @@ -13,6 +13,7 @@ FROM git.luke-else.co.uk/luke-else/nodejs:latest AS run WORKDIR /app COPY --from=build /app/package.json ./package.json +COPY --from=build /app/pnpm-workspace.yaml ./pnpm-workspace.yaml COPY --from=build /app/.npmrc ./.npmrc COPY --from=build /app/build ./build RUN pnpm install --prod