mirror of
https://gitlab.com/niansa/discordlistforbots.git
synced 2025-03-06 20:49:22 +01:00
Fixed static .js files being unreachable
This commit is contained in:
parent
3cfc9410fc
commit
0107bc1121
1 changed files with 1 additions and 1 deletions
2
main.cc
2
main.cc
|
@ -6,7 +6,7 @@ int main() {
|
|||
drogon::app().addListener(LISTEN_ADDR, LISTEN_PORT).
|
||||
enableSession(std::chrono::minutes(1200)).
|
||||
createDbClient(DB_TYPE, DB_HOST, DB_PORT, DB_NAME, DB_USER, DB_PASSWORD).
|
||||
setFileTypes({"css", "png", "ico"});
|
||||
setFileTypes({"css", "png", "ico", "js"});
|
||||
// Run HTTP framework, the method will block in the internal event loop
|
||||
drogon::app().run();
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue