Files
multimeter-connect-web/next.config.js
T

15 lines
275 B
JavaScript

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