File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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 , {
You can’t perform that action at this time.
0 commit comments