added css load

This commit is contained in:
Sander Hautvast 2021-03-05 11:51:15 +01:00
parent 948c0bc50f
commit 997915b9dd
3 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,6 @@
<head>
<meta charset="UTF-8">
<title>MatRepl</title>
<link rel="stylesheet" href="src/css/app.css">
</head>
<body>
<a class="right" href="https://github.com/shautvast/matrepl" target="_blank">https://github.com/shautvast/matrepl</a>
@ -15,6 +14,5 @@
<textarea id="command_input" class="single_line" autofocus></textarea>
</label>
</div>
<script type="application/ecmascript" src="bundle.js"></script>
</body>
</html>

View file

@ -1,3 +1,4 @@
import '../css/app.css';
import {scan, token_types} from './scanner';
import {parse} from './parser';
import {

View file

@ -44,6 +44,7 @@ module.exports = {
plugins: [
new HtmlWebpackPlugin({
hash: true,
template: './src/index.html',
filename: 'index.html'
})
]