Configuration
Directives
Example
// environment.js
module.exports = {
name: 'My Application',
version: '1.0',
apiPath: '/path/to/api',
layoutNamespace: 'Layout',
moduleNamespace: 'Module',
registeredModules: [
{
name: 'MyModule',
pathPrefix: '/mymodule'
},
{
name: 'Sandbox',
pathPrefix: '/sandbox'
}
]
};Last updated