Files
echecsfrance/next.config.js
T
Timothy Armes 9f12a00030 Zone collection + creation
Zone create UI flow
2024-10-21 15:19:28 +02:00

17 lines
448 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")("./src/i18n.ts");
const withPWA = require("next-pwa")({
dest: "public",
disable: process.env.NODE_ENV === "development",
});
module.exports = nextConfig;
module.exports = withBundleAnalyzer(withNextIntl(withPWA({})));