This commit is contained in:
Timothy Armes
2023-10-03 09:19:45 +02:00
parent 8cb21b1590
commit ac349b9115
11 changed files with 1994 additions and 22 deletions
+5 -1
View File
@@ -7,5 +7,9 @@ const withBundleAnalyzer = require("@next/bundle-analyzer")({
const withNextIntl = require("next-intl/plugin")("./i18n.ts");
const withPWA = require("next-pwa")({
dest: "public",
});
module.exports = nextConfig;
module.exports = withBundleAnalyzer(withNextIntl({}));
module.exports = withBundleAnalyzer(withNextIntl(withPWA({})));