1.1.0 • Published 20 days ago

@washingtonpost/site-favicons v1.1.0

Weekly downloads
-
License
-
Repository
github
Last release
20 days ago

Favicon

Favicons are managed here: https://github.com/WPMedia/origin-combined.

How to Use

Disclaimer:

title, meta or any other elements (e.g. script) need to be contained as direct children of the Head element, or wrapped into maximum one level of <React.Fragment> or arrays—otherwise the tags won't be correctly picked up on client-side navigations.

import React from "react";
import getConfig from "next/config";
import Document, { Html, Head, Main, NextScript } from "next/document";
// Nice import here!
import { Favicon } from "@washingtonpost/site-favicons";

class ExampleDocument extends Document {
  static async getInitialProps(ctx) {
    const initialProps = await Document.getInitialProps(ctx);
    return {
      ...initialProps
    };
  }

  render() {
    return (
      <Html>
        <Head>
          <Favicon />
        </Head>
        <body>
          <Main />
          <NextScript />
        </body>
      </Html>
    );
  }
}

export default ExampleDocument;
1.1.0

20 days ago

1.0.0

20 days ago

0.3.4-alpha.5

30 days ago

0.3.4-alpha.4

1 month ago

0.3.4-alpha.3

1 month ago

0.3.4-alpha.2

1 month ago

0.3.4-alpha.1

2 months ago

0.3.4-alpha.0

2 months ago

0.2.12

9 months ago

0.2.11

9 months ago

0.2.10

9 months ago

0.3.0

9 months ago

0.2.7

10 months ago

0.2.6

10 months ago

0.2.9

10 months ago

0.2.8

10 months ago

0.3.2

9 months ago

0.2.3

10 months ago

0.3.1

9 months ago

0.2.5

10 months ago

0.3.3

9 months ago

0.2.4

10 months ago

0.2.2

11 months ago

0.1.9-alpha.2

12 months ago

0.1.9-alpha.0

12 months ago

0.2.0-alpha.0

12 months ago

0.2.0-alpha.2

11 months ago

0.2.1

11 months ago

0.2.0

11 months ago

0.2.0-alpha.1

12 months ago

0.1.8

12 months ago

0.1.7

12 months ago

0.2.2-alpha.0

11 months ago

0.2.2-alpha.1

11 months ago

0.1.4

1 year ago

0.1.6

12 months ago

0.1.5

12 months ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago