Files
multimeter-connect-web/next.config.js
T
2023-07-17 12:39:09 +05:30

18 lines
324 B
JavaScript

const runtimeCaching = require("next-pwa/cache");
const withPWA = require("next-pwa")({
dest: "public",
skipWaiting: true,
register: true,
sw: "/sw.js",
runtimeCaching,
dynamicStartUrl: false,
});
/** @type {import('next').NextConfig} */
const nextConfig = {};
module.exports = withPWA({
...nextConfig,
});