From 0b5629cf19862da05a2e0dbb0e9541c4c7721f9d Mon Sep 17 00:00:00 2001 From: rsmokeUM Date: Tue, 7 Oct 2025 14:31:09 -0400 Subject: [PATCH] Update asset manifest to serve CSS from builds directory instead of linking individual stylesheets. This change ensures the application uses the compiled CSS from dartsass for improved asset management. --- app/assets/config/manifest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js index 8c40049..b99cddf 100644 --- a/app/assets/config/manifest.js +++ b/app/assets/config/manifest.js @@ -1,5 +1,5 @@ //= link_tree ../images -//= link application.css -//= link active_admin.css +// Ensure we serve the CSS compiled by dartsass in app/assets/builds +//= link_tree ../builds //= link application.js //= link_tree ../../javascript/controllers .js