config: use ts module.exports syntax for compatibility
This commit is contained in:
parent
3bad149cdb
commit
a51c4eb942
@ -1,4 +1,4 @@
|
|||||||
export default {
|
module.exports = {
|
||||||
app: {
|
app: {
|
||||||
name: 'Example App',
|
name: 'Example App',
|
||||||
contact_email: 'contact@example.net'
|
contact_email: 'contact@example.net'
|
||||||
@ -43,4 +43,4 @@ export default {
|
|||||||
cache: false
|
cache: false
|
||||||
},
|
},
|
||||||
approval_mode: false,
|
approval_mode: false,
|
||||||
};
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export default {
|
module.exports = {
|
||||||
log_level: "DEBUG",
|
log_level: "DEBUG",
|
||||||
db_log_level: "ERROR",
|
db_log_level: "ERROR",
|
||||||
base_url: "https://watch-my.stream",
|
base_url: "https://watch-my.stream",
|
||||||
@ -12,4 +12,4 @@ export default {
|
|||||||
secure: true,
|
secure: true,
|
||||||
allow_invalid_tls: false
|
allow_invalid_tls: false
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export default {
|
module.exports = {
|
||||||
mysql: {
|
mysql: {
|
||||||
host: "localhost",
|
host: "localhost",
|
||||||
user: "root",
|
user: "root",
|
||||||
@ -6,4 +6,4 @@ export default {
|
|||||||
database: "wms2_core_test",
|
database: "wms2_core_test",
|
||||||
create_database_automatically: true
|
create_database_automatically: true
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user