Skip to content

Commit bbcd08a

Browse files
committed
revert isProd
1 parent 58225b8 commit bbcd08a

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 isProd = process.env.ELEVENTY_ENV === 'prod'
1+
const isDev = process.env.ELEVENTY_ENV === 'dev'
22

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

0 commit comments

Comments
 (0)