From baa6056c4c6885a93eef61d27e31bcaf46584449 Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 16 Apr 2025 15:35:54 +0200 Subject: [PATCH] fix: update integrity attributes for preview environment and include preview directory in build inputs --- shared/includes/layout/js.html | 4 ++-- shared/layouts/base.html | 2 +- turbo.json | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/shared/includes/layout/js.html b/shared/includes/layout/js.html index c4ba0d4b7..6140f5a47 100644 --- a/shared/includes/layout/js.html +++ b/shared/includes/layout/js.html @@ -6,10 +6,10 @@ {% include "layout/js-libs.html" libs=libs.js %} - + - + {% scripts %} \ No newline at end of file diff --git a/shared/layouts/base.html b/shared/layouts/base.html index f99a38a6a..84067f351 100644 --- a/shared/layouts/base.html +++ b/shared/layouts/base.html @@ -43,7 +43,7 @@ {% assign layout-dark = layout-dark | default: site.layoutDark %} - + {{ content }} diff --git a/turbo.json b/turbo.json index 013e808b1..867db00cf 100644 --- a/turbo.json +++ b/turbo.json @@ -9,7 +9,8 @@ "^build" ], "inputs": [ - "shared/**" + "shared/**", + "preview/**" ], "outputs": [ "dist/**"