diff --git a/data/db.test.js b/data/db.test.js
index 5a1d39c..27f2508 100644
--- a/data/db.test.js
+++ b/data/db.test.js
@@ -7,8 +7,7 @@
// Setting up a second singleton instance for testing is possible, but would
// not actually test the production variant.
-import { Round } from "../models/round.js";
-import WbDb from "./db.js";
+import WbDb from "/data/db.js";
/** The instance used for the current test.
*
diff --git a/data/session_repo.js b/data/session_repo.js
index 790e2a0..dc0c18f 100644
--- a/data/session_repo.js
+++ b/data/session_repo.js
@@ -1,7 +1,7 @@
"use strict";
-import Session from "../models/session.js";
-import WbDb from "./db.js";
+import Session from "/models/session.js";
+import WbDb from "/data/db.js";
/** A transaction or known type that can be turned into a transaction.
* @typedef {IDBTransaction|IDBDatabase|WbDb=} Transactable
diff --git a/data/session_repo.test.js b/data/session_repo.test.js
index b6012ab..059cae4 100644
--- a/data/session_repo.test.js
+++ b/data/session_repo.test.js
@@ -1,9 +1,9 @@
"use strict";
-import { Team } from "../models/round.js";
-import Session from "../models/session.js";
-import WbDb from "./db.js";
-import SessionRepo from "./session_repo.js";
+import { Team } from "/models/round.js";
+import Session from "/models/session.js";
+import WbDb from "/data/db.js";
+import SessionRepo from "/data/session_repo.js";
/** The instance used for the current test.
*
diff --git a/index.html b/index.html
index a027b0e..86036d5 100644
--- a/index.html
+++ b/index.html
@@ -5,16 +5,16 @@
Watterblock
-
-
-
+
+
+
diff --git a/models/game.js b/models/game.js
index c28bd53..7708958 100644
--- a/models/game.js
+++ b/models/game.js
@@ -1,7 +1,7 @@
"use strict";
-import { Round, Team } from "./round.js";
-import RoundResult from "./round_result.js";
+import { Round, Team } from "/models/round.js";
+import RoundResult from "/models/round_result.js";
/** A single game of watten.
*
diff --git a/models/game.test.js b/models/game.test.js
index 311c3fb..0436175 100644
--- a/models/game.test.js
+++ b/models/game.test.js
@@ -1,8 +1,8 @@
"use strict";
-import { Round, Team } from "./round.js";
-import RoundResult from "./round_result.js";
-import Game from "./game.js";
+import { Round, Team } from "/models/round.js";
+import RoundResult from "/models/round_result.js";
+import Game from "/models/game.js";
export default function() {
QUnit.module("game", function() {
diff --git a/models/round.test.js b/models/round.test.js
index 4e7b91b..c3a54d7 100644
--- a/models/round.test.js
+++ b/models/round.test.js
@@ -1,6 +1,6 @@
"use strict";
-import { Round, Team } from "./round.js";
+import { Round, Team } from "/models/round.js";
export default function() {
QUnit.module("round", function() {
diff --git a/models/round_result.js b/models/round_result.js
index 964bd6a..9d5e2f6 100644
--- a/models/round_result.js
+++ b/models/round_result.js
@@ -1,6 +1,6 @@
"use strict";
-import { Round, Team } from "./round.js";
+import { Team } from "/models/round.js";
/** A finished round of Watten. */
export default class RoundResult {
diff --git a/models/round_result.test.js b/models/round_result.test.js
index 80c10dc..2e3a12b 100644
--- a/models/round_result.test.js
+++ b/models/round_result.test.js
@@ -1,7 +1,7 @@
"use strict";
-import { Team } from "./round.js";
-import RoundResult from "./round_result.js";
+import { Team } from "/models/round.js";
+import RoundResult from "/models/round_result.js";
export default function() {
QUnit.module("RoundResult", function() {
diff --git a/models/session.js b/models/session.js
index fe681cb..6443962 100644
--- a/models/session.js
+++ b/models/session.js
@@ -1,7 +1,7 @@
"use strict";
-import Game from "./game.js";
-import { Team } from "./round.js";
+import Game from "/models/game.js";
+import { Team } from "/models/round.js";
/** A session of Watten.
*
diff --git a/models/session.test.js b/models/session.test.js
index 7874517..2ae03b3 100644
--- a/models/session.test.js
+++ b/models/session.test.js
@@ -1,8 +1,8 @@
"use strict";
-import { Round, Team } from "./round.js";
-import Game from "./game.js";
-import Session from "./session.js";
+import { Team } from "/models/round.js";
+import Game from "/models/game.js";
+import Session from "/models/session.js";
export default function() {
QUnit.module("session", function() {
diff --git a/test.html b/test.html
index 78d0e2e..a39d2f8 100644
--- a/test.html
+++ b/test.html
@@ -4,14 +4,14 @@
Watterblock Tests
-
+
-
-
+
+