Skip to content

Commit

Permalink
Update comments in config
Browse files Browse the repository at this point in the history
  • Loading branch information
xbubbo committed Nov 26, 2024
1 parent f4aa1fc commit d637d72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const config: Config = {
// Server Configuration
server: {
port: 8080, // The port on which Interstellar runs (Default: 8080)
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.
},

// Authentication Configuration (Optional)
Expand Down
2 changes: 1 addition & 1 deletion src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};

Expand Down

0 comments on commit d637d72

Please sign in to comment.