Files
tfm_ainventory/frontend/next.config.mjs

16 lines
307 B
JavaScript

import withPWAInit from 'next-pwa';
const withPWA = withPWAInit({
dest: 'public',
disable: process.env.NODE_ENV === 'development',
register: true,
skipWaiting: true,
});
/** @type {import('next').NextConfig} */
const nextConfig = {
// Config options here
};
export default withPWA(nextConfig);