mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withPWA = require("next-pwa");
|
|
|
|
const nextConfig = withPWA({
|
|
reactStrictMode: true,
|
|
pwa: {
|
|
dest: "public",
|
|
register: true,
|
|
skipWaiting: true,
|
|
disable: process.env.NODE_ENV === "development",
|
|
},
|
|
});
|
|
|
|
module.exports = nextConfig;
|