From aede9d3b1b1ea20b81cf9d216f815ac0101709cc Mon Sep 17 00:00:00 2001 From: Erjan Gavalji Date: Tue, 24 Mar 2015 14:08:01 +0200 Subject: [PATCH] Fix the hello-world template app --- apps/template-hello-world/app.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/template-hello-world/app.ts b/apps/template-hello-world/app.ts index c2a8a8fcb..e5b60f7f9 100644 --- a/apps/template-hello-world/app.ts +++ b/apps/template-hello-world/app.ts @@ -1,7 +1,7 @@ import application = require("application"); -application.mainModule = "app/main-page"; +application.mainModule = "main-page"; // Remove this in the AppBuilder templates -application.cssFile = "app/template-hello-world/app.css" +application.cssFile = "app.css" application.start();