From 6926feb9eda65ee4fd0db04bbddecf9b28782589 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 13 Feb 2019 22:32:53 +0000 Subject: [PATCH] Attempt of reading the baseurl from a json file and failing. --- src/Ombi/ClientApp/src/index.html | 45 ++++++++++++++++++------------- src/Ombi/ClientApp/src/main.ts | 4 --- src/Ombi/wwwroot/baseUrl.json | 3 +++ 3 files changed, 29 insertions(+), 23 deletions(-) diff --git a/src/Ombi/ClientApp/src/index.html b/src/Ombi/ClientApp/src/index.html index 9b9bedde5..c2faa3a1f 100644 --- a/src/Ombi/ClientApp/src/index.html +++ b/src/Ombi/ClientApp/src/index.html @@ -3,34 +3,41 @@ + - + + Ombi + + + - - diff --git a/src/Ombi/ClientApp/src/main.ts b/src/Ombi/ClientApp/src/main.ts index 7c308f746..54b38fb28 100644 --- a/src/Ombi/ClientApp/src/main.ts +++ b/src/Ombi/ClientApp/src/main.ts @@ -1,8 +1,4 @@ // Main - -// import * as Pace from "pace"; -// Pace.start(); - import "jquery"; import "bootstrap/dist/js/bootstrap"; diff --git a/src/Ombi/wwwroot/baseUrl.json b/src/Ombi/wwwroot/baseUrl.json index e69de29bb..bfc707738 100644 --- a/src/Ombi/wwwroot/baseUrl.json +++ b/src/Ombi/wwwroot/baseUrl.json @@ -0,0 +1,3 @@ +{ + "baseUrl":"ombi" +} \ No newline at end of file