[](https://npmjs.com/package/@nuxtjs/browserconfig) [](https://npmjs.
npm install @nuxtjs/browserconfigAdds XML browser configuration.aspx) support.
(Useful for internet explorer and Edge)
> Browser configuration files (also known as browserconfig) can be used to define pinned site customizations,
> such as tile backgrounds, badge updates, and tile notifications. Browser configuration files let you set
> these customizations using external XML files rather than metadata within the HTML markup of a webpage.
- Creates static/browserconfig.xml
- Adds to pages if not exits.
@nuxtjs/browserconfig dependency using yarn or npm to your project@nuxtjs/browserconfig to modules section of nuxt.config.jsjs
{
modules: [
// Simple usage
'@nuxtjs/browserconfig',
// With options
['@nuxtjs/browserconfig', { TileColor: '#3f51b5' }],
], // You can optionally use global options instead of inline form
browserconfig: {
TileColor: '#3f51b5',
square150x150logo: {'@':{src:'icon.png'}}
}
}
```