import type { NextConfig } from "next"; const path = require('path') const nextConfig: NextConfig = { /* config options here */ allowedDevOrigins: ['imnyang.dev'], turbopack: { root: path.join(__dirname, '.'), }, }; export default nextConfig;