commit | 6c3d4635d1d50e1f5ab0cfc7713dafb008605ae3 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon Mar 06 09:51:21 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Mon Mar 06 09:53:24 2023 +0000 |
tree | 115f18796d8c8bbf0105daacae12a59f6ecd830a | |
parent | 61ddba12ac18c9a8216ed368a541f735d2d0ea9b [diff] [blame] |
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 +};