mirror of
https://github.com/bendtherules/multimeter-connect-web.git
synced 2026-08-18 22:03:12 +00:00
15 lines
275 B
JavaScript
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,
|
|
});
|