aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
blob: 585874319cd0e84ab666f16bc270d0d5c9729072 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** @type {import('next').NextConfig} */

const withPWA = require("next-pwa")({
  dest: "public",
  register: true,
  disable: process.env.NODE_ENV === "development",
});

module.exports = withPWA({
  reactStrictMode: false,
  images: {
    domains: ["tenor.com"],
    unoptimized: true,
  },
  trailingSlash: true,
});