added css load
This commit is contained in:
parent
948c0bc50f
commit
997915b9dd
3 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
import '../css/app.css';
|
||||
import {scan, token_types} from './scanner';
|
||||
import {parse} from './parser';
|
||||
import {
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ module.exports = {
|
|||
plugins: [
|
||||
new HtmlWebpackPlugin({
|
||||
hash: true,
|
||||
template: './src/index.html',
|
||||
filename: 'index.html'
|
||||
})
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue