├── .gitignore ├── .vscode └── launch.json ├── README.md └── tempImg ├── bg.jpg └── icon.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | bower_components 4 | npm-debug.log 5 | dist 6 | .idea 7 | .sass-cache 8 | .tmp 9 | .gulp 10 | package-lock.json 11 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // 使用 IntelliSense 了解相关属性。 3 | // 悬停以查看现有属性的描述。 4 | // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "type": "chrome", 9 | "request": "launch", 10 | "name": "Launch Chrome against localhost", 11 | "url": "http://localhost:8008", 12 | "webRoot": "${workspaceRoot}" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Asch-frontend had been removed to https://github.com/AschPlatform/asch/tree/master/public. 2 | -------------------------------------------------------------------------------- /tempImg/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AschPlatform/asch-frontend/eb0dc998f62de59a7e09fa5bc2a7b978773e8380/tempImg/bg.jpg -------------------------------------------------------------------------------- /tempImg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AschPlatform/asch-frontend/eb0dc998f62de59a7e09fa5bc2a7b978773e8380/tempImg/icon.png --------------------------------------------------------------------------------