Browse Source

Import css in build

Jason Grout 4 years ago
parent
commit
1480ad641a
1 changed files with 1 additions and 1 deletions
  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('');