notea/next.config.js
2021-06-06 12:25:16 +08:00

19 lines
376 B
JavaScript

const withPWA = require('next-pwa')
module.exports = withPWA({
future: {
/**
* FIXME
* https://github.com/netlify/netlify-plugin-nextjs/issues/209
*/
webpack5: process.env.NETLIFY ? false : true,
},
target: process.env.NETLIFY ? 'serverless' : 'server',
pwa: {
disable: process.env.NODE_ENV === 'development',
dest: 'public',
},
})