├── package.json ├── README.md ├── blitz_export.json └── index.html /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [{BLITZ_PROJECT_SLUG}](https://stackblitz.com/edit/{BLITZ_PROJECT_SLUG}) 2 | -------------------------------------------------------------------------------- /blitz_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "htmlTemplate": "index.html", 3 | "exportProjectTo": "" 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {BLITZ_RESOURCES} 4 | 5 | 6 | {BLITZ_TEMPLATE} 7 | 8 | 9 | --------------------------------------------------------------------------------