Reputation: 664
I'm trying to add icons (this icons) to my meteor project placing them into 'app/public' but it freezes my app at starting process:
"Building the application /"
Also tried to place them into 'client/lib', but get's the same result
Using: Meteor 1.3.2.4
Upvotes: 1
Views: 42
Reputation: 1969
meteor create materialtest
We're doing this to ensure there's no package incompatibility issues, and isolate the simplest issue we can (Meteor with Material Icons).
/client/head.html
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
</head>
Meteor should pick up the head in this file and render it. Right now afaik this is the only way to put stuff in the head with Meteor 1.3.
meteor
Upvotes: 2