summaryrefslogtreecommitdiff
path: root/next.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'next.config.ts')
-rw-r--r--next.config.ts16
1 files changed, 16 insertions, 0 deletions
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;