File size: 354 Bytes
61d39e2
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## Definitions

### `core.config` - Configuration

Puter's configuration object. This includes values from `config.json` or their
defaults, and computed values like `origin` and `api_origin`.

```javascript

const config = use('core.config');



extension.get('/get-origin', { noauth: true }, (req, res) => {

    res.send(config.origin);

})

```