1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-10-02 01:20:11 +02:00
pingvin-share/next.config.js
Elias Schneider 8caa667d09
Add PWA
2022-04-28 15:02:38 +02:00

15 lines
243 B
JavaScript

/** @type {import('next').NextConfig} */
const withPWA = require("next-pwa");
const nextConfig = withPWA({
reactStrictMode: true,
pwa: {
dest: "public",
register: true,
skipWaiting: true,
},
})
module.exports = nextConfig