This module is not yet compatible with Nuxt 3
Head over to v2.nuxt.com

@nuxtjs/browserconfig

Adds XML browser configuration support

BrowserConfig

npmnpm (scoped with tag)

Adds XML browser configuration 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 <meta name=msapplication-config> to pages if not exits.

Setup

  • Add @nuxtjs/browserconfig dependency using yarn or npm to your project
  • Add @nuxtjs/browserconfig to modules section of nuxt.config.js
{
  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'}}
  }
}