feat(F-141): completed feature

This commit is contained in:
chattie
2026-08-21 22:02:01 +02:00
parent 0a1d32ecc3
commit 022347349d
17 changed files with 253 additions and 31 deletions

View File

@@ -1,6 +1,14 @@
import type { NextConfig } from "next";
import { dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import type { NextConfig } from 'next';
const frontendRoot = dirname(fileURLToPath(import.meta.url));
const nextConfig: NextConfig = {
turbopack: {
root: frontendRoot,
},
outputFileTracingRoot: frontendRoot,
images: {
remotePatterns: [
{ protocol: 'https', hostname: '**' },