|
|
@@ -1,4 +1,12 @@ |
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */ |
|
|
|
/** @type {import('next').NextConfig} */ |
|
|
|
|
|
|
|
const withPWA = require("next-pwa")({ |
|
|
|
dest: "public", |
|
|
|
register: true, |
|
|
|
skipWaiting: true, |
|
|
|
}); |
|
|
|
|
|
|
|
const nextConfig = { |
|
|
|
// eslint: { |
|
|
|
// // Warning: This allows production builds to successfully complete even if |
|
|
@@ -7,4 +15,4 @@ const nextConfig = { |
|
|
|
// }, |
|
|
|
}; |
|
|
|
|
|
|
|
module.exports = nextConfig; |
|
|
|
module.exports = withPWA(nextConfig); |