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