We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58225b8 commit bbcd08aCopy full SHA for bbcd08a
src/_data/env.js
@@ -1,7 +1,7 @@
1
-const isProd = process.env.ELEVENTY_ENV === 'prod'
+const isDev = process.env.ELEVENTY_ENV === 'dev'
2
3
module.exports = {
4
- baseUrl: isProd
5
- ? '/2025/'
6
- : '/'
+ baseUrl: isDev
+ ? '/'
+ : '/2025/'
7
}
0 commit comments