This commit is contained in:
Elias Schneider
2022-04-28 15:02:38 +02:00
parent 85b5de86c4
commit 8caa667d09
17 changed files with 5559 additions and 308 deletions

View File

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