Do not use starting slash when setting the main module

This commit is contained in:
Erjan Gavalji
2015-03-23 17:36:37 +02:00
parent f7c62c085e
commit 9be733a7fa

View File

@@ -1,7 +1,7 @@
import application = require("application");
// Set the start module for the application
application.mainModule = "/main-page";
application.mainModule = "main-page";
// Start the application
application.start();