mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
fadfe60730
- bundle analyser added
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {};
|
|
|
|
const withBundleAnalyzer = require("@next/bundle-analyzer")({
|
|
enabled: process.env.ANALYZE === "true",
|
|
});
|
|
|
|
module.exports = nextConfig;
|
|
module.exports = withBundleAnalyzer({});
|