Start_url issue and custom splash screen does not have name
See original GitHub issueSteps to reproduce
- add this module to project (nuxt 3 + vuetify3 + pinia is present in project) cloudflare preset is used
- run
npm run build
- run this command to serve
npx miniflare .output/server/index.mjs --site .output/public
- open dev tool and generate report on lighthouse
Issue Analytics
- State:
- Created a year ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
Android 12 Splash Screen Icon Not Displaying - Stack Overflow
I have no reason to reference the SplashScreen class directly unless I'm doing more sophisticated customization. Unfortunately, moving the ...
Read more >Splash Screen in Android - ProAndroidDev
Splash screen is a screen that loads when you launch an app. When you first open your application, a loading screen, also known...
Read more >Migrate your existing splash screen implementation to Android ...
If you have previously implemented a custom splash screen in Android 11 or lower, you'll need to migrate your app to the SplashScreen...
Read more >Splash screen on Android jumps down during startup #47634
I encountered the problem both with physical device or emulators. By adding a drawable splash screen, the problem doesn't occur any more. (I ......
Read more >Add a web app manifest
The manifest file can have any name, but is commonly named manifest.json and served from the root (your website's top-level directory).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think it is worth adding a warning for every mandatory field which are required by browsers to be able to accept a website as PWA, and I created my project using
npx nuxi init
as now all we know is that thename
property was missing because of that it was failing to be recognized as PWAThe issue is solved,
package.json
file,name
property was missing, so I added the name property to itnuxt.config.ts
I added this PWA config.nuxt
and.output
foldersnpm run build
npx miniflare .output/server/index.mjs --site .output/public