Skip to content

Commit

Permalink
fix(react-native): default template fails when envs are not set
Browse files Browse the repository at this point in the history
  • Loading branch information
maciekstosio authored Nov 14, 2024
1 parent 668913e commit 1853109
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = function (api) {

if (
process.env.NX_TASK_TARGET_TARGET === 'build' ||
process.env.NX_TASK_TARGET_TARGET.includes('storybook')
process.env.NX_TASK_TARGET_TARGET?.includes('storybook')
) {
return {
presets: [
Expand Down

0 comments on commit 1853109

Please sign in to comment.