11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withPWA = require('next-pwa');
|
|
const runtimeCaching = require('next-pwa/cache');
|
|
|
|
module.exports = withPWA({
|
|
pwa: {
|
|
dest: 'public',
|
|
runtimeCaching,
|
|
},
|
|
});
|