diff options
Diffstat (limited to 'packages/astro/test/fixtures/static-build/src/pages/scripts.astro')
-rw-r--r-- | packages/astro/test/fixtures/static-build/src/pages/scripts.astro | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/static-build/src/pages/scripts.astro b/packages/astro/test/fixtures/static-build/src/pages/scripts.astro new file mode 100644 index 000000000..0c6203d7c --- /dev/null +++ b/packages/astro/test/fixtures/static-build/src/pages/scripts.astro @@ -0,0 +1,17 @@ +--- +import ExternalHoisted from '../components/ExternalScripts.astro'; +import InlineHoisted from '../components/InlineScripts.astro'; +--- + +<html> + <head> + <title>Demo app</title> + </head> + <body> + <section> + <h1>Scripts</h1> + <InlineHoisted /> + <ExternalHoisted /> + </section> +</body> +</html> |