portfolio/next.config.ts

13 lines
198 B
TypeScript
Raw Normal View History

2026-03-22 14:14:05 +00:00
import type { NextConfig } from "next";
2026-06-18 18:21:43 +00:00
module.exports = {
allowedDevOrigins: ['192.168.1.254'],
}
2026-03-22 14:14:05 +00:00
const nextConfig: NextConfig = {
/* config options here */
2026-06-18 18:21:43 +00:00
2026-03-22 14:14:05 +00:00
};
export default nextConfig;