Remove assets/

This commit is contained in:
Simon Ser 2020-06-24 11:18:51 +02:00
parent f9972dae5f
commit 62300746d3
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
5 changed files with 4 additions and 4 deletions

View file

@ -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>

View file

@ -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",