9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const withPWA = require('next-pwa')({
|
||
|
dest: 'public',
|
||
|
})
|
||
|
|
||
|
module.exports = withPWA({
|
||
|
// config
|
||
|
})
|