如何更改 Vue PWA 应用程序的应用程序名称?

How do I change the appname of a Vue PWA app?

我正在使用 vue-cli 版本 3.11.0 与 pwa 插件一起构建我的网络应用程序。我想更改应用程序名称(添加到主屏幕时显示的名称)。我该怎么做?我在项目的任何地方都没有看到任何 manifest.json 文件。

如果您使用 @vue/cli-plugin-pwa,请勾选 this

// vue.config.js in your project (IF NOT EXIST, create new one)
module.exports = {
  // ...other vue-cli plugin options...
  pwa: {
    name: 'My App', // <---- this is PWA name
  }
}