Skip to content

Commit

Permalink
fix(bootstrap-server): remove uneccessary tags
Browse files Browse the repository at this point in the history
Closes #27
  • Loading branch information
MarkPieszak committed Dec 7, 2016
1 parent 3c04e41 commit 41f6b8c
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions Client/bootstrap-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,8 @@ declare var Zone: any;

export default function (params: IParams): Promise<{ html: string, globals?: any }> {

const doc = `
<!DOCTYPE html>\n
<html>
<head></head>
<body>
<app></app>
</body>
</html>
`;
// Our Root application document
const doc = '<app></app>';

// hold platform reference
const platformRef = platformNodeDynamic();
Expand Down

0 comments on commit 41f6b8c

Please sign in to comment.