@kuroku/react-static-favicons
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

react-static/favicons

A little helper to make working with react-static and favicons easier.

Install

yarn add @kuroku/react-static-favicons

Usage

// static.config.js


import ReactStaticFavicons from '@kuroku/react-static-favicons';

// keeping the instance global allows the favicons result to be cached
const reactStaticFavicons = new ReactStaticFavicons({
	// string: directory where the image files are written
	outputDir: path.join(__dirname, 'dist'),

	// string: the source image
	inputFile: path.join(__dirname, 'logo.svg'),

	// object: the configuration passed directory to favicons
	configuration: {
		icons: {
	        favicons: true,
	        // other favicons configuration
		}
	},
});

// react-static config
export default {
	renderToHtml: async (render, C, meta) => {
		meta.faviconsElements = await reactStaticFavicons.render();
		const html = render(<C />);
		return html;
	},
	Document: ({Html, Head, Body, children, siteData, renderMeta}) => (
		<Html>
			<Head>
				{renderMeta.faviconsElements}
			</Head>
		<Body>
			{children}
		</Body>
		</Html>
	),
}

Package Sidebar

Install

npm i @kuroku/react-static-favicons

Weekly Downloads

10

Version

0.0.7

License

MIT

Unpacked Size

9.85 kB

Total Files

7

Last publish

Collaborators

  • disposaboy