Skip to content

Commit eb193f9

Browse files
committed
Default
1 parent fc78e0e commit eb193f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const config: Config = {
44
// Server Configuration
55
server: {
66
port: 8080, // The port on which Interstellar runs (Default: 8080)
7-
obfuscate: false, // Set to false to disable obfuscation
8-
compress: false, // Set to false to disable compression
7+
obfuscate: true, // Set to false to disable obfuscation
8+
compress: true, // Set to false to disable compression
99
},
1010

1111
// Password Protection (Optional)

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async function Start() {
6565
await app.after();
6666
app.addHook("onRequest", app.basicAuth);
6767
}
68-
// @ts-ignore
68+
// @ts-expect-error
6969
const { handler } = await import("./dist/server/entry.mjs");
7070
await app
7171
.register(fastifyStatic, {

0 commit comments

Comments
 (0)