develop #83

Merged
M-Gabrielly merged 426 commits from develop into main 2025-12-04 04:13:15 +00:00
Showing only changes of commit 2dc7b00afc - Show all commits

View File

@ -1,3 +1,9 @@
import { fileURLToPath } from 'url'
import { dirname } from 'path'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
@ -9,6 +15,9 @@ const nextConfig = {
images: {
unoptimized: true,
},
// Define explicit output tracing root to silence Next.js workspace root warning
// Set to the current package directory (susconecta)
outputFileTracingRoot: __dirname,
}
export default nextConfig