Initial commit: ManoonOils headless store

This commit is contained in:
Neo
2026-03-03 17:32:07 +00:00
parent 8a17f7c43c
commit fcea5f552c
21 changed files with 224 additions and 94 deletions

View File

@@ -1,6 +1,10 @@
import createNextIntlPlugin from "next-intl/plugin";
import type { NextConfig } from "next";
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
@@ -17,4 +21,4 @@ const nextConfig: NextConfig = {
},
};
export default nextConfig;
export default withNextIntl(nextConfig);