Skip to content

Commit

Permalink
feat: better arch
Browse files Browse the repository at this point in the history
  • Loading branch information
shahargl committed Oct 22, 2024
1 parent 822ea19 commit 7ee07fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion keep-ui/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ const nextConfig = {
],
},
compiler: {
removeConsole: false,
removeConsole:
process.env.NODE_ENV === "production"
? {
exclude: ["error"],
}
: false,
},
output: "standalone",
productionBrowserSourceMaps: process.env.ENV === "development",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "keep"
version = "0.26.0"
version = "0.27.0"
description = "Alerting. for developers, by developers."
authors = ["Keep Alerting LTD"]
readme = "README.md"
Expand Down

0 comments on commit 7ee07fd

Please sign in to comment.