From 4a90d42132a169629113f4fc960c494eef195edd Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Fri, 21 Aug 2015 12:16:21 -0400 Subject: [PATCH] Use `ghost.min.css` when building for production. --- core/client/Brocfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/client/Brocfile.js b/core/client/Brocfile.js index 08cd8408c5..d17571ac68 100644 --- a/core/client/Brocfile.js +++ b/core/client/Brocfile.js @@ -27,7 +27,7 @@ app = new EmberApp({ source: './app/styles/app.css', inputFile: 'app.css', browsers: 'last 2 versions', - outputFile: 'ghost.css' + outputFile: isProduction ? 'ghost.min.css' : 'ghost.css' }, hinting: false, fingerprint: disabled