mirror of
https://github.com/bendtherules/multimeter-connect-web.git
synced 2026-08-18 13:52:26 +00:00
11 lines
174 B
JavaScript
11 lines
174 B
JavaScript
const withPWA = require("next-pwa")({
|
|
dest: "public",
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {};
|
|
|
|
module.exports = withPWA({
|
|
...nextConfig,
|
|
});
|