Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

next.config.js 245B

1234567891011
  1. /* eslint-disable @typescript-eslint/no-var-requires */
  2. const withPWA = require('next-pwa')
  3. const isProduction = process.env.NODE_ENV === 'production'
  4. module.exports = withPWA({
  5. pwa: {
  6. disable: !isProduction,
  7. dest: 'public',
  8. },
  9. })