We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7ded99 commit e590122Copy full SHA for e590122
config.ts
@@ -4,6 +4,7 @@ const config: Config = {
4
// Server Configuration
5
server: {
6
port: 8080, // The port on which Interstellar runs (Default: 8080)
7
+ assets: "github", // Assets Source. Use 'local' for storing assets locally.
8
},
9
10
// Authentication Configuration (Optional)
src/types/config.ts
@@ -5,6 +5,9 @@ export interface Config {
// The port to run the HTTP server on
// Default: 8080
port?: number;
+
+ // The source of static assets, limited to specific values
+ assets?: "local" | "github";
11
};
12
13
// Authentication configuration
0 commit comments