Index.cshtml

34 lines | 516 B Blame History Raw Download

@{
    /**/
    Layout = null;
}

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta charset="utf-8" />
    <title>WebFileServer</title>
</head>
<body>
    @if (HttpContext.Current.IsDebuggingEnabled)
    {
        <a href="http://localhost:8081/">To webpack dev server</a>
    }
    
    <div id="App"> </div>

    @Scripts.RenderFormat("<script src='{0}' defer></script>",
      "/SPA_Build/app_bundle.js?" + DateTime.Now)
</body>
</html>