mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
9f12a00030
Zone create UI flow
17 lines
448 B
JavaScript
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({})));
|