mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
const withPWA = require('next-pwa')
|
|
|
|
module.exports = withPWA({
|
|
pwa: {
|
|
dest: 'public',
|
|
disable: process.env.NODE_ENV === 'development',
|
|
},
|
|
reactStrictMode: true,
|
|
})
|