1.2.4 • Published 8 years ago
w3c-manifest-loader v1.2.4
w3c-manifest-loader
Load a W3C manifest file into the page
Install
$ npm install w3c-manifest-loader --save-devUsage
Import the manifest.json file in your main file (probably where you import your css).
// using ES2015
import './manifest.json';
// or using CommonJS
require('./manifest.json');And configure the loader for manifest.json files in your webpack config file:
{
module: {
loaders: [
{
test: /manifest\.json$/,
loader: 'w3c-manifest',
type: 'javascript/auto',
options: {
name: '[name].[hash].[ext]',
icon: '/icons/[name].[hash].[ext]',
legacyAppleSupport: true
}
}
]
}
}Options
These are common options you can specify in the loaders config.
name- Name of the manifest.json output, defaults to[hash].[ext]. See file-loader for more info.icon- Name of the icons output, defaults to[hash].[ext]. See file-loader for more info.legacyAppleSupportUse the legacy proprietary Apple elements for WebApps.
License
This software is free to use under the MIT license. See the LICENSE-MIT file for license text and copyright information.