├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── Trunk.toml ├── icon-256.png ├── index.html ├── manifest.json ├── service_worker.js └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | 3 | /dist/ 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/README.md -------------------------------------------------------------------------------- /Trunk.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | public_url = "./" -------------------------------------------------------------------------------- /icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/icon-256.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/manifest.json -------------------------------------------------------------------------------- /service_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/service_worker.js -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkohlgrueber/yew-pwa-minimal/HEAD/src/main.rs --------------------------------------------------------------------------------