Angular 2 の初心者。
アプリに Google フォントを含める方法。アプリの構造は
クライアント
|--app.ts
|--main.ts
|--index.html
IndexFile.html
<head></head>
<body style="font-family: 'Montserrat', sans-serif;">
<div class="container-fluid">
<app-start>Loading...</app-start>
</div>
</body>
head タグに含まれるリンク
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
クライアントフォルダ(font.js)にJSファイルを作成し、コードを挿入しましたが、効果はありませんでした
Meteor.startup(function() {
WebFontConfig = {
google: { families: [ 'Montserrat::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
})
しかし、効果はありません。
このフォントを Angular 2 + Meteor アプリケーションに含める正しい方法