2017-01-04 15 views
1

それを実行すると私の電子角2のアプリケーションを構築した後、私の角2のアプリケーションはもはや動作しません。エラーは発生しませんが、アプリはこれ以上ルートを知りませんので、index.htmlにしたがって読み込みが固まってしまいます。それはasarが私のアプリを詰め込む方法と何かを持っていますか?もう一度やり直すにはどうすればいいですか? ファイル構造:電子アプリケーションをビルドすると私の角2のアプリケーションが破損する

./package.json

-----> ./電子/ main.js

src/---> index.html 
      app/app.routing.ts 
      app/app.component.ts 
      app/app.module.ts 
      app/home/home.component.ts 
      app/...All The other components...... 

のindex.html:

<!doctype html> 
<html> 
    <head> 
    <meta charset="utf-8"> 
    <title>New</title> 
    <script> 
    document.write('<base href="' + document.location + '" />'); 
    </script> 

    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="icon" type="image/x-icon" href="favicon.ico"> 

    <script>window.$ = window.jQuery = require('./public/jquery/dist/jquery.min.js');</script> 
    <script src="./public/bootstrap/dist/js/bootstrap.min.js"></script> 

    <link rel="stylesheet" href="./public/bootstrap/dist/css/bootstrap.min.css"> 

    <link rel="stylesheet" href="./public/bootstrap/dist/css/bootstrap-theme.min.css"> 

    </head> 
    <body> 
    <app-root> 
     Loading... 
    </app-root> 
    </body> 
</html> 

答えて

0
href="' + document.location + '" 

と置き換えます。

href="./" 

hereどうすればいいですか

関連する問題