diff --git a/frontend/src/config/index.js b/frontend/src/config/index.js index 1049c2e4d..c1c06e555 100644 --- a/frontend/src/config/index.js +++ b/frontend/src/config/index.js @@ -3,7 +3,7 @@ // The whole contents is exposed to the client // Load Package Details for some default values -import schema from './config.schema' +import schema from './schema' import { validateAndExport } from '../../../config' const CONFIG = { diff --git a/frontend/src/config/config.schema.js b/frontend/src/config/schema.js similarity index 97% rename from frontend/src/config/config.schema.js rename to frontend/src/config/schema.js index 96c245949..6e2455b4e 100644 --- a/frontend/src/config/config.schema.js +++ b/frontend/src/config/schema.js @@ -14,7 +14,7 @@ module.exports = commonSchema.keys({ .description( ` Host (domain, IPv4, or localhost) for the frontend when running Vite as a standalone Node.js instance; - internally, nginx forwards requests to this address. + internally, nginx forward requests to this address. `, ) .default('0.0.0.0'),