+2
-2
app/src/signup-page/signup.html
+2
-2
app/src/signup-page/signup.html
···
2
2
<html lang="en">
3
3
<head>
4
4
<meta charset="UTF-8" />
5
-
<script type="module" src="/src/signup.ts"></script>
6
-
<link rel="stylesheet" href="/src/signup.css" />
5
+
<script type="module" src="./signup.ts"></script>
6
+
<link rel="stylesheet" href="./signup.css" />
7
7
</head>
8
8
9
9
<body>
+2
-2
app/src/signup-page/signup.ts
+2
-2
app/src/signup-page/signup.ts
···
1
1
import Alpine from "alpinejs";
2
-
import { createAccount } from "@utils/api.ts";
3
-
import { Store } from "@utils/store.ts";
2
+
import { createAccount } from "../utils/api.ts";
3
+
import { Store } from "../utils/store.ts";
4
4
5
5
Alpine.data("signupPageState", () => ({
6
6
serverAddress: "",