Files
echecsfrance/next.config.js
T
Timothy Armes ac349b9115 PWA
2023-10-04 15:32:33 +02:00

16 lines
393 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {};
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
const withNextIntl = require("next-intl/plugin")("./i18n.ts");
const withPWA = require("next-pwa")({
dest: "public",
});
module.exports = nextConfig;
module.exports = withBundleAnalyzer(withNextIntl(withPWA({})));