diff options
author | 2022-04-03 16:02:57 -0300 | |
---|---|---|
committer | 2022-04-03 14:02:57 -0500 | |
commit | dc6e89f0a32952568def085a7c6eb79fae697303 (patch) | |
tree | 0312982227102e618f6f2f239f4bf25e32625f4c /examples/with-vite-plugin-pwa/src | |
parent | dff89a0fa3d51d1473e8a19b000ba8a76261d060 (diff) | |
download | astro-dc6e89f0a32952568def085a7c6eb79fae697303.tar.gz astro-dc6e89f0a32952568def085a7c6eb79fae697303.tar.zst astro-dc6e89f0a32952568def085a7c6eb79fae697303.zip |
chore: updated examples to v0.26.0 (#2977)
* New script behavior
* Astro.request
* Reverted `deno` to `node`
* Updated subpath
Diffstat (limited to 'examples/with-vite-plugin-pwa/src')
-rw-r--r-- | examples/with-vite-plugin-pwa/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-vite-plugin-pwa/src/pages/index.astro b/examples/with-vite-plugin-pwa/src/pages/index.astro index 19ca25700..6214033dd 100644 --- a/examples/with-vite-plugin-pwa/src/pages/index.astro +++ b/examples/with-vite-plugin-pwa/src/pages/index.astro @@ -11,6 +11,6 @@ <body> <h1>Welcome to <a href="https://astro.build/">Astro</a></h1> - <script src="/src/index.ts" type="module" hoist></script> + <script src="/src/index.ts"></script> </body> </html> |