Quellcode durchsuchen

Import css in build

Jason Grout vor 4 Jahren
Ursprung
Commit
1480ad641a
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      builder/src/build.ts

+ 1 - 1
builder/src/build.ts

@@ -253,7 +253,7 @@ export namespace Build {
       if ((jsImport = cssJS(cssImport))) {
         styleContents.push(`import '${jsImport}';`);
       } else {
-        styleContents.push(`// import '${cssImport}';`);
+        styleContents.push(`import '${cssImport}';`);
       }
     });
     styleContents.push('');