From 6fe5c4c4d983a79e24c42af61cff0c0999c7438f Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 3 Jul 2025 00:00:16 +0200 Subject: [PATCH] Exclude devtest.ts from tailwindcss (#34935) Fix this leftover from the typescript migration. --- tailwind.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 01740d816b..fa233a9814 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -29,7 +29,7 @@ export default { important: true, // the frameworks are mixed together, so tailwind needs to override other framework's styles content: [ isProduction && '!./templates/devtest/**/*', - isProduction && '!./web_src/js/standalone/devtest.js', + isProduction && '!./web_src/js/standalone/devtest.ts', '!./templates/swagger/v1_json.tmpl', '!./templates/user/auth/oidc_wellknown.tmpl', '!**/*_test.go',