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 f4aa1fc commit d637d72Copy full SHA for d637d72
config.ts
@@ -4,7 +4,7 @@ const config: Config = {
4
// Server Configuration
5
server: {
6
port: 8080, // The port on which Interstellar runs (Default: 8080)
7
- assets: "external", // Assets Source. Use 'local' for storing assets locally.
+ assets: "external", // Source for app/game images and JSON. Use 'local' for storing assets locally.
8
},
9
10
// Authentication Configuration (Optional)
src/types/config.ts
@@ -6,7 +6,7 @@ export interface Config {
// Default: 8080
port?: number;
- // The source of static assets
+ // Source for app/game images and JSON
assets?: "local" | "external";
11
};
12
0 commit comments