FPSMS-frontend
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

19 行
447 B

  1. /* eslint-disable @typescript-eslint/no-var-requires */
  2. /** @type {import('next').NextConfig} */
  3. const withPWA = require("next-pwa")({
  4. dest: "public",
  5. register: true,
  6. skipWaiting: true,
  7. });
  8. const nextConfig = {
  9. // eslint: {
  10. // // Warning: This allows production builds to successfully complete even if
  11. // // your project has ESLint errors.
  12. // ignoreDuringBuilds: true,
  13. // },
  14. };
  15. module.exports = withPWA(nextConfig);