nuxt-community / pwa-module

Zero config PWA solution for Nuxt.js
https://pwa.nuxtjs.org
MIT License
1.23k stars 171 forks source link

Feature request: support for Nuxt Runtime configs #477

Open dbarjs opened 2 years ago

dbarjs commented 2 years ago

It would be interesting to integrate with the Nuxt runtime.

nuxt.config.js

...
publicRuntimeConfig: {
  pwa: {
    manifest: {
      name: !process.env.PWA_SUFFIX
        ? 'App Name'
        : `App Name - ${process.env.PWA_SUFFIX}`,
      short_name: !process.env.PWA_SUFFIX
        ? 'App Name'
        : `App Name - ${process.env.PWA_SUFFIX}`,
    },
  },
},
...