1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Alexandre Rossi <niol@zincube.net>
Date: Mon, 29 Apr 2024 15:56:35 +0100
Subject: Avoid extra node modules dependencies
Forwarded: not-needed
- pack precompiled css instead of relying on sass compiler API
---
web/src/main.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- transmission.git.orig/web/src/main.js 2025-11-06 14:14:08.392610850 +0100
+++ transmission.git/web/src/main.js 2025-11-06 14:14:08.388610776 +0100
@@ -9,7 +9,7 @@
import { Transmission } from './transmission.js';
import { debounce } from './utils.js';
-import '../assets/css/transmission-app.scss';
+import '../assets/css/transmission-app.css';
function main() {
const action_manager = new ActionManager();
|