new version for latest webpack 4.28.x

This commit is contained in:
David Meincke
2019-01-20 12:54:34 +01:00
parent b060a71135
commit 5ca9607377
24 changed files with 12481 additions and 204 deletions
+1
View File
@@ -0,0 +1 @@
<div>App running</div>
+3
View File
@@ -0,0 +1,3 @@
body {
background: aqua;
}
-3
View File
@@ -1,3 +0,0 @@
<div>
my app-root html here!
</div>
-8
View File
@@ -1,8 +0,0 @@
html, body {
position: relative;
height: 100%;
width: 100%;
background: rgb(179, 179, 179);
margin: 0;
overflow: hidden;
}
+3 -2
View File
@@ -1,5 +1,6 @@
require("./boot.less");
var bootHtml = require("./boot.html");
import './app.less';
import bootHtml from './app.html';
var appEle = document.createElement("app-root");
appEle.innerHTML = bootHtml;