mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2026-01-18 16:27:23 +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,
|
|
})
|