feat: initialize mohfarawati app foundation
CI / quality (push) Waiting to run

This commit is contained in:
MOH
2026-03-06 13:53:57 +01:00
parent 30330c4f1e
commit f86b7f39f7
50 changed files with 4615 additions and 152 deletions
+18 -3
View File
@@ -1,4 +1,19 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
import createNextIntlPlugin from "next-intl/plugin";
export default nextConfig;
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.ignoreWarnings = [
...(config.ignoreWarnings ?? []),
{
message: /Build dependencies behind this expression are ignored/,
},
];
return config;
},
};
export default withNextIntl(nextConfig);