Infrastructure: Implement master/dev/vX branching, save git path, and fix username casing
This commit is contained in:
15
frontend/next.config.mjs
Normal file
15
frontend/next.config.mjs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user