我试图在nuxt.js中使用PWA模块,到目前为止,我在下面此地址的Firebase服务器上启动了nuxt应用程序。
https://quasar-d56d0.firebaseapp.com/
在适用于Android的chrome上,Windows和Mac均可正常运行,但不适用于iOS,而对于Safari则根本不适用于任何设备。
下面是我的nuxt.config.js。
我想问一下,是否有任何选项可以使自定义弹出窗口要求用户下载nuxt应用程序(作为渐进式Web应用程序),而不是在chrome中使用它?
export default {
mode: 'spa',
/*
** Headers of the page
*/
head: {
title: process.env.npm_package_name || '',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: process.env.npm_package_description || '' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
/*
** Global CSS
*/
css: [
],
/*
** Plugins to load before mounting the App
*/
plugins: [
],
/*
** Nuxt.js dev-modules
*/
buildModules: [
],
/*
** Nuxt.js modules
*/
modules: [
// Doc: https://axios.nuxtjs.org/usage
'@nuxtjs/axios',
'@nuxtjs/pwa',
],
/*
** Axios module configuration
** See https://axios.nuxtjs.org/options
*/
axios: {
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend (config, ctx) {
}
},
/*
** Overwrite's generated manifest values
*/
manifest: {
name: 'Nuxt.js PWA',
short_name: 'Nuxt.js PWA',
lang: 'en',
display: 'standalone',
},
pwa: {
meta: {
mobileAppIOS: true
}
}
}