mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
Remove assets/
This commit is contained in:
parent
f9972dae5f
commit
62300746d3
5 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>IRC client</title>
|
<title>IRC client</title>
|
||||||
<link rel="stylesheet" href="assets/style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<section id="sidebar">
|
<section id="sidebar">
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<script type="module">
|
<script type="module">
|
||||||
import "./assets/index.js";
|
import "./index.js";
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import * as irc from "./irc.js";
|
import * as irc from "./lib/irc.js";
|
||||||
import Client from "./client.js";
|
import Client from "./lib/client.js";
|
||||||
|
|
||||||
var server = {
|
var server = {
|
||||||
name: "server",
|
name: "server",
|
Loading…
Reference in a new issue