From 8b6c5da7558322af7fca9f6ceeb836e101164ee3 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 29 Aug 2024 10:38:27 +0100 Subject: [PATCH] DEV: Stop using sprockets for 'use ember cli' stylesheet (#28633) This was throwing the "Discourse does not support compiling scss/sass files via Sprockets" error if the file was not cached --- app/views/layouts/ember_cli.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/ember_cli.html.erb b/app/views/layouts/ember_cli.html.erb index b6d953e1fb7..7d45e9b19d2 100644 --- a/app/views/layouts/ember_cli.html.erb +++ b/app/views/layouts/ember_cli.html.erb @@ -4,7 +4,7 @@ <%= content_for?(:title) ? yield(:title) : SiteSetting.title %> - <%= stylesheet_link_tag(:ember_cli) %> + <%= discourse_stylesheet_link_tag(:ember_cli) %>