Fix nucleus API access
diff --git a/next.config.js b/next.config.js
index 86c2e9d..4d67c66 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,3 +1,5 @@
+require('dotenv').config();
+
 module.exports = {
   reactStrictMode: true,
   webpack(config) {
@@ -37,5 +39,8 @@
   },
   images: {
     domains: ["picsum.photos", "cdn.discordapp.com"]
+  },
+  env: {
+    NUCLEUS_CALLBACK: process.env.NUCLEUS_CALLBACK,
   }
-};
\ No newline at end of file
+};