Tldraw/next.config.js

13 wiersze
207 B
JavaScript
Czysty Zwykły widok Historia

2021-06-11 12:37:09 +00:00
const withPWA = require('next-pwa')
module.exports = withPWA({
2021-06-12 13:37:54 +00:00
future: {
webpack5: true,
},
2021-06-11 12:37:09 +00:00
pwa: {
dest: 'public',
2021-06-12 13:35:30 +00:00
scope: '/',
disable: process.env.NODE_ENV === 'development',
2021-06-11 12:37:09 +00:00
},
})