Voicemeeter-remote-frontend/next.config.mjs

15 lines
243 B
JavaScript
Raw Permalink Normal View History

2024-07-22 01:41:17 +02:00
/** @type {import('next').NextConfig} */
import nextPWA from "next-pwa";
const withPWA = nextPWA({
dest: "public",
register: true,
skipWaiting: true,
});
const nextConfig = withPWA({
experimental: {},
});
2024-07-22 01:41:17 +02:00
export default nextConfig;