insomnia/packages/insomnia-app/config/index.js

11 lines
260 B
JavaScript
Raw Normal View History

2020-04-26 20:33:39 +00:00
/*
* This file contains a helper to get the configuration for the app
2020-04-26 20:33:39 +00:00
* NOTE: This is used during build scripts so can't reference any of the app code
*/
const config = require('./config.json');
2020-04-26 20:33:39 +00:00
module.exports.appConfig = function() {
return config;
2020-04-26 20:33:39 +00:00
};