Skip to content

Instantly share code, notes, and snippets.

@Legends
Last active December 19, 2019 19:39
Show Gist options
  • Select an option

  • Save Legends/43257a8e382ee9585cc2563c0fe563b1 to your computer and use it in GitHub Desktop.

Select an option

Save Legends/43257a8e382ee9585cc2563c0fe563b1 to your computer and use it in GitHub Desktop.
var WebpackPwaManifest = require('webpack-pwa-manifest')
var path = require("path");
// .mimetype: application/manifest+json - .webmanifest
exports.pwaManifest = new WebpackPwaManifest({
filename: "manifest.webmanifest",
short_name: "legends",
name: "legends.github.io",
description: "work biography & experience",
start_url: "index.html",
background_color: "#00ACC1",
Theme_color: "#00ACC1",
display: "fullscreen",
icons: [
{
src: path.resolve('src/icons/icon.png'),
sizes: [192, 512] // multiple sizes: 96, 128, 192, 256, 384, 512
}
],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment