I'm using @nuxtjs/pwa "3.3.5" with nuxt "2.14.12". I ran the projecct with nuxt build; nuxt start (my build directory is: .build) and I'm using Nginx for local url redirection.
My config looks like:
icon: {
iconFileName: "icon.png",
},
manifest: {
name: "MyAppName",
lang: "frFR",
short_name: "AppName",
start_url: "/?standalone=true",
display: "standalone",
background_color: "#f8f8f8",
theme_color: "#f8f8f8",
description: "My simple PWA app",
icons: [],
},
},
When I run a lighthouse test I get the following errors in pwa module:

Can anyone tell me what's the wrong with my config?