FPSMS-frontend
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

20 wiersze
483 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. disable: process.env.NODE_ENV === "development",
  8. });
  9. const nextConfig = {
  10. eslint: {
  11. // Warning: This allows production builds to successfully complete even if
  12. // your project has ESLint errors.
  13. ignoreDuringBuilds: true,
  14. },
  15. };
  16. module.exports = withPWA(nextConfig);