Skip to content

Commit e590122

Browse files
committed
Added assets choice (Will implement later)
1 parent a7ded99 commit e590122

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const config: Config = {
44
// Server Configuration
55
server: {
66
port: 8080, // The port on which Interstellar runs (Default: 8080)
7+
assets: "github", // Assets Source. Use 'local' for storing assets locally.
78
},
89

910
// Authentication Configuration (Optional)

src/types/config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ export interface Config {
55
// The port to run the HTTP server on
66
// Default: 8080
77
port?: number;
8+
9+
// The source of static assets, limited to specific values
10+
assets?: "local" | "github";
811
};
912

1013
// Authentication configuration

0 commit comments

Comments
 (0)