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

14 lines
229 B
JavaScript

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