From c3dcb9c827df6d80ad1b0b1a7c6155561527b39d Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr Date: Tue, 30 Dec 2025 13:46:39 +0200 Subject: init --- next.config.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 next.config.ts (limited to 'next.config.ts') diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..498156c --- /dev/null +++ b/next.config.ts @@ -0,0 +1,16 @@ +import type { NextConfig } from 'next'; + +const nextConfig: NextConfig = { + allowedDevOrigins: ['192.168.1.45', '192.168.1.33'], + turbopack: { + rules: { + '*.svg': { + loaders: ['@svgr/webpack'], + as: '*.js', + }, + }, + }, + /* config options here */ +}; + +export default nextConfig; -- cgit v1.3-3-g829e