....
This commit is contained in:
parent
e67759372a
commit
3c1b636994
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -59,5 +59,5 @@ typings/
|
||||||
|
|
||||||
dist/
|
dist/
|
||||||
node_modules/
|
node_modules/
|
||||||
public/
|
|
||||||
.vscode/
|
|
||||||
|
|
29
.vscode/tasks.json
vendored
Normal file
29
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "0.1.0",
|
||||||
|
"isShellCommand": true,
|
||||||
|
"showOutput": "always",
|
||||||
|
"suppressTaskName": false,
|
||||||
|
"args": [
|
||||||
|
"--color"
|
||||||
|
],
|
||||||
|
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"taskName": "npm:webpack-dev-server",
|
||||||
|
"command": "npm",
|
||||||
|
"args": ["run", "webpack-dev-server"],
|
||||||
|
"isBuildCommand": true,
|
||||||
|
"isTestCommand": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"taskName": "gulp:webpack",
|
||||||
|
"command": "gulp",
|
||||||
|
"args": ["webpack"],
|
||||||
|
"isBuildCommand": true,
|
||||||
|
"isTestCommand": false
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
19
public/index.html
Normal file
19
public/index.html
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>Hello React!</title>
|
||||||
|
<!--[if lte IE 9]>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.0/es6-promise.auto.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
<!-- Dependencies -->
|
||||||
|
|
||||||
|
<!-- Main -->
|
||||||
|
<script src="./vendor.bundle.js"></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="example"></div>
|
||||||
|
<script src="./bundle.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user