1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-10-01 00:50:10 +02:00
pingvin-share/next.config.js

15 lines
243 B
JavaScript
Raw Normal View History

2022-04-25 15:15:17 +02:00
/** @type {import('next').NextConfig} */
2022-04-28 15:02:38 +02:00
const withPWA = require("next-pwa");
const nextConfig = withPWA({
2022-04-25 15:15:17 +02:00
reactStrictMode: true,
2022-04-28 15:02:38 +02:00
pwa: {
dest: "public",
register: true,
skipWaiting: true,
},
})
2022-04-25 15:15:17 +02:00
module.exports = nextConfig