mirror of
https://github.com/aljazceru/sendstr-web.git
synced 2025-12-17 06:24:24 +01:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withPWA = require('next-pwa')
|
|
const runtimeCaching = require('next-pwa/cache')
|
|
|
|
module.exports = withPWA({
|
|
pwa: {
|
|
dest: 'public',
|
|
runtimeCaching,
|
|
},
|
|
}) |