mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
* ⬆️ Bump next-pwa from 5.5.5 to 5.6.0 Bumps [next-pwa](https://github.com/shadowwalker/next-pwa) from 5.5.5 to 5.6.0. - [Release notes](https://github.com/shadowwalker/next-pwa/releases) - [Changelog](https://github.com/shadowwalker/next-pwa/blob/master/CHANGELOG.md) - [Commits](https://github.com/shadowwalker/next-pwa/compare/5.5.5...5.6.0) --- updated-dependencies: - dependency-name: next-pwa dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * 🔧 Update `next-pwa` config Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Carlos Cuesta <carloscuesta@me.com>
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
const withPWA = require('next-pwa')({
|
|
disable: process.env.NODE_ENV === 'development',
|
|
dest: 'public',
|
|
})
|
|
|
|
module.exports = withPWA({
|
|
reactStrictMode: true,
|
|
})
|