mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-04 23:10:13 +01:00
13 lines
199 B
JavaScript
13 lines
199 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const withPWA = require("next-pwa");
|
|
|
|
const nextConfig = withPWA({
|
|
reactStrictMode: true,
|
|
pwa: {
|
|
dest: "public"
|
|
},
|
|
})
|
|
|
|
module.exports = nextConfig
|