aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Stendahl <jakobste@uio.no>2020-10-13 20:50:54 +0200
committerJakob Stendahl <jakobste@uio.no>2020-10-13 20:50:54 +0200
commit24757056f13ea75f957850b2669bfd8e81ea0f54 (patch)
tree5b0152907f64b6af0af398b35495bd529d4fd2c8 /src
parente53bddfc71d70eb9f2b7a2910b4b191bc43088ab (diff)
downloadAurora-data-24757056f13ea75f957850b2669bfd8e81ea0f54.tar.gz
Aurora-data-24757056f13ea75f957850b2669bfd8e81ea0f54.zip
Update paths
Diffstat (limited to 'src')
-rw-r--r--src/components/WeatherCurrent.svelte2
-rw-r--r--src/server.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/WeatherCurrent.svelte b/src/components/WeatherCurrent.svelte
index 6f92b20..93dbbd6 100644
--- a/src/components/WeatherCurrent.svelte
+++ b/src/components/WeatherCurrent.svelte
@@ -107,7 +107,7 @@
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
- ), url(/aurora.jpg);
+ ), url(/Aurora-data/aurora.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
diff --git a/src/server.ts b/src/server.ts
index 8425b2c..0c033d5 100644
--- a/src/server.ts
+++ b/src/server.ts
@@ -8,7 +8,7 @@ const dev = NODE_ENV === 'development';
polka() // You can also use Express
.use(
- 'aurora-data',
+ 'Aurora-data',
compression({ threshold: 0 }),
sirv('static', { dev }),
sapper.middleware()