12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
|
const app_config = {
|
||
|
|
||
|
/*
|
||
|
* The name of the application.
|
||
|
* Used through-out the application as the proper display name.
|
||
|
*/
|
||
|
name: env("APP_NAME", "Flitter"),
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = app_config
|