create-next-pwa
create-next-pwa copied to clipboard
⚡️ Set up Next.js Progressive Web App with `npx create-next-pwa`
I'm trying to make a static pwa with `next.js` and tailwind. ## Steps 1. Use `create-next-pwa`: ``` npx create-next-pwa pwa-test --tailwind ``` 2. Install `gh-pages` dependency and update `package.json` ```json...
Hi. First of all, congratulations for this project. Will be interesting if I could use it with Chakra-ui.
``` error - Please check your GenerateSW plugin configuration: [WebpackGenerateSW] 'pwa' property is not expected to be here. ``` Found a solution here: https://github.com/shadowwalker/next-pwa/issues/392 I changed my `next.config.js` to this...
Minor issue: `manifest.json` was empty When I ran npx create-next-pwa@latest --typescript --tailwind myapp I pasted in the following: ``` { "name": "MyApp", "short_name": "MyApp", "theme_color": "#ffffff", "background_color": "#004740", "display": "fullscreen",...