mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-12-14 11:47:33 +00:00
Formatting, npm update
This commit is contained in:
parent
d1e59fe08c
commit
a90bd4cd06
3 changed files with 172 additions and 579 deletions
745
web/package-lock.json
generated
745
web/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -45,9 +45,7 @@ class ErrorBoundaryImpl extends React.Component {
|
||||||
// Fetch additional info and a better stack trace
|
// Fetch additional info and a better stack trace
|
||||||
StackTrace.fromError(error).then((stack) => {
|
StackTrace.fromError(error).then((stack) => {
|
||||||
console.error("[ErrorBoundary] Stacktrace fetched", stack);
|
console.error("[ErrorBoundary] Stacktrace fetched", stack);
|
||||||
const stackString = stack
|
const stackString = stack.map((el) => ` at ${el.functionName} (${el.fileName}:${el.columnNumber}:${el.lineNumber})`).join("\n");
|
||||||
.map((el) => ` at ${el.functionName} (${el.fileName}:${el.columnNumber}:${el.lineNumber})`)
|
|
||||||
.join("\n");
|
|
||||||
const niceStack = `${error.toString()}\n${stackString}`;
|
const niceStack = `${error.toString()}\n${stackString}`;
|
||||||
this.setState({ niceStack });
|
this.setState({ niceStack });
|
||||||
});
|
});
|
||||||
|
|
|
@ -5,7 +5,7 @@ import react from "@vitejs/plugin-react";
|
||||||
export default defineConfig(() => ({
|
export default defineConfig(() => ({
|
||||||
build: {
|
build: {
|
||||||
outDir: "build",
|
outDir: "build",
|
||||||
assetsDir: "static/media"
|
assetsDir: "static/media",
|
||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
port: 3000,
|
port: 3000,
|
||||||
|
|
Loading…
Reference in a new issue