aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2023-09-06 19:53:23 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2023-09-06 19:53:23 -0500
commitef4fb0a5277ee99bd0f1747b77e733ef7f02460d (patch)
tree2c7b306eaa814dedccb987a28a1cd050fdd94136 /next.config.js
parenta66d6b395e22d6506319cc20b6dfab0e88cb0f39 (diff)
downloadhomepage-ef4fb0a5277ee99bd0f1747b77e733ef7f02460d.tar.xz
homepage-ef4fb0a5277ee99bd0f1747b77e733ef7f02460d.zip
Make BreadCrumbs domain agnostic
Diffstat (limited to 'next.config.js')
-rw-r--r--next.config.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/next.config.js b/next.config.js
index 023ecb8..2fa75e0 100644
--- a/next.config.js
+++ b/next.config.js
@@ -14,6 +14,9 @@ module.exports = () => {
...webpackConfig,
sassOptions: {
includePaths: [path.join(__dirname, 'styles')]
+ },
+ env: {
+ DISPLAY_DOMAIN: process.env.DISPLAY_DOMAIN || 'flu0r1ne.net',
}
};
-} \ No newline at end of file
+}