Skip to content

Commit

Permalink
fix: app version on dev server (#10830)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Krick <[email protected]>
  • Loading branch information
mattkrick authored Feb 7, 2025
1 parent 32f432f commit d100928
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/webpack/dev.servers.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ module.exports = {
],
plugins: [
new webpack.DefinePlugin({
__PRODUCTION__: false
__PRODUCTION__: false,
__APP_VERSION__: JSON.stringify(process.env.npm_package_version)
}),
new webpack.IgnorePlugin({resourceRegExp: /^exiftool-vendored$/, contextRegExp: /@dicebear/}),
new webpack.IgnorePlugin({resourceRegExp: /^@resvg\/resvg-js$/, contextRegExp: /@dicebear/})
Expand Down

0 comments on commit d100928

Please sign in to comment.