mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
/*
|
|
* This file contains a helper to get the configuration for the app
|
|
* NOTE: This is used during build scripts so can't reference any of the app code
|
|
*/
|
|
|
|
const config = require('./config.json');
|
|
|
|
module.exports.appConfig = function() {
|
|
return config;
|
|
};
|