Skip to content

Commit

Permalink
Fix defines
Browse files Browse the repository at this point in the history
  • Loading branch information
perry-mitchell committed Feb 24, 2024
1 parent cccff61 commit e683425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = [

plugins: [
new DefinePlugin({
TARGET: "web"
TARGET: JSON.stringify("web")
})
],

Expand All @@ -109,7 +109,7 @@ module.exports = [

plugins: [
new DefinePlugin({
TARGET: "react-native"
TARGET: JSON.stringify("react-native")
})
],

Expand Down

0 comments on commit e683425

Please sign in to comment.