私はFirebaseにangle2アプリケーションをデプロイしようとしています。私はthisガイドに従ってきましたが、firebase open
と入力するとエラーが表示されます(下記参照)。FirebaseのAngular2アプリケーションをデプロイする
これは私のアプリケーション
\root
\ app
\ assets
\ dev
\ node_modules
\ public
\ src
\ typings
index.html
firebase.json
gulpfile.js
package.json
tsconfig.json
typings.json
の構造である私は、パブリックフォルダ内に(彼らはdev
フォルダ内にある.ts
ものからtranspiled .js
ファイル、だ)私のapp
フォルダ内のすべてのファイルを入れています。私は、パブリックフォルダ内のindex.htmlファイルもコピーしました。
だから今、パブリックフォルダ構造は次のとおりです。
\public
\app
|-> app.component.js
|-> boot.js
|-> other .js files
index.html
これはindex.htmlを:
<html>
<head>
<base href="/">
<title>Angular 2 Boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Load libraries -->
<!-- IE required polyfills, in this exact order -->
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/angular2/bundles/router.dev.js"></script>
<script src="node_modules/angular2/bundles/http.js"></script>
<link rel="stylesheet" href="src/css/app.css">
</head>
<body>
<my-app>Loading...</my-app>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
</body>
</html>
私firebase.jsonは、このようなものです:
{
"firebase": "wetta",
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
エラーそのグーグルクロムコンソールshows is: (index):24 Uncaught ReferenceError: System is not defined
私は正しい方向に進んでいますか?このエラーの原因は何ですか?