Skip to content

Commit

Permalink
Remove cdn request for bootstrap and font awesome
Browse files Browse the repository at this point in the history
  • Loading branch information
Justkant committed Sep 30, 2015
1 parent bd6b7a2 commit e9ff19e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/helpers/Html.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, {Component, PropTypes} from 'react';
import ReactDOM from 'react-dom/server';
import serialize from 'serialize-javascript';
import DocumentMeta from 'react-document-meta';
const cdn = '//cdnjs.cloudflare.com/ajax/libs/';


/**
* Wrapper component containing HTML metadata and boilerplate tags.
Expand Down Expand Up @@ -31,10 +31,6 @@ export default class Html extends Component {
{DocumentMeta.renderAsReact()}

<link rel="shortcut icon" href="/favicon.ico" />
<link href={cdn + 'twitter-bootstrap/3.3.5/css/bootstrap.css'}
media="screen, projection" rel="stylesheet" type="text/css" />
<link href={cdn + 'font-awesome/4.3.0/css/font-awesome.min.css'}
media="screen, projection" rel="stylesheet" type="text/css" />

{/* styles (will be present only in production with webpack extract text plugin) */}
{Object.keys(assets.styles).map((style, index) =>
Expand Down

0 comments on commit e9ff19e

Please sign in to comment.