AI chat widget

This commit is contained in:
HugeFrog24
2026-02-13 23:10:13 +01:00
parent 4d37e8be9a
commit c39800a021
237 changed files with 14203 additions and 6047 deletions

View File

@@ -1,7 +1,21 @@
import type { NextConfig } from "next";
import { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts");
/** @type {import('next').NextConfig} */
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "source.unsplash.com",
port: "",
pathname: "/**",
},
],
},
output: "standalone",
};
export default nextConfig;
export default withNextIntl(nextConfig);