fix: prod check

This commit is contained in:
Cory Dransfeldt 2024-10-14 19:15:18 -07:00
parent b64ff2c6c6
commit 3d946429f7
No known key found for this signature in database

View file

@ -75,7 +75,7 @@ export default async function (eleventyConfig) {
})
eleventyConfig.addShortcode('appVersion', () => appVersion)
eleventyConfig.addShortcode('isProduction', () => process.env.ELEVENTY_PRODUCTION)
eleventyConfig.addShortcode('isProduction', () => process.env.ELEVENTY_PRODUCTION === 'true')
// events
if (process.env.ELEVENTY_PRODUCTION) eleventyConfig.on('afterBuild', copyErrorPages)