We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc78e0e commit eb193f9Copy full SHA for eb193f9
2 files changed
config.ts
@@ -4,8 +4,8 @@ const config: Config = {
4
// Server Configuration
5
server: {
6
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
+ obfuscate: true, // Set to false to disable obfuscation
+ compress: true, // Set to false to disable compression
9
},
10
11
// Password Protection (Optional)
index.ts
@@ -65,7 +65,7 @@ async function Start() {
65
await app.after();
66
app.addHook("onRequest", app.basicAuth);
67
}
68
- // @ts-ignore
+ // @ts-expect-error
69
const { handler } = await import("./dist/server/entry.mjs");
70
await app
71
.register(fastifyStatic, {
0 commit comments