mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-17 04:33:15 +02: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
|