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>
|
||||
<meta charset="utf-8">
|
||||
<title>IRC client</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<section id="sidebar">
|
||||
|
@ -71,7 +71,7 @@
|
|||
</section>
|
||||
|
||||
<script type="module">
|
||||
import "./assets/index.js";
|
||||
import "./index.js";
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import * as irc from "./irc.js";
|
||||
import Client from "./client.js";
|
||||
import * as irc from "./lib/irc.js";
|
||||
import Client from "./lib/client.js";
|
||||
|
||||
var server = {
|
||||
name: "server",
|
Loading…
Reference in a new issue