Files
learning-platform/app/frontend/next.config.js

14 lines
277 B
JavaScript

const withPWA = require('next-pwa')({
dest: 'public',
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === 'development',
})
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}
module.exports = withPWA(nextConfig)