Skip to content

Commit 58225b8

Browse files
committed
isDev -> isProd
1 parent 13627d8 commit 58225b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/_data/env.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const isDev = process.env.ELEVENTY_ENV === 'dev'
1+
const isProd = process.env.ELEVENTY_ENV === 'prod'
22

33
module.exports = {
4-
baseUrl: isDev
5-
? '/'
6-
: '/2025/'
4+
baseUrl: isProd
5+
? '/2025/'
6+
: '/'
77
}

0 commit comments

Comments
 (0)