diff options
author | 2021-07-13 11:04:27 -0400 | |
---|---|---|
committer | 2021-07-13 11:04:27 -0400 | |
commit | 783db7b3a06ac36be66fc861810280eb923a6888 (patch) | |
tree | d8438ac5f81324b1b1879c037983555658f8b769 /examples/framework-multiple | |
parent | c9915b60951ddd77976ccc2240ce7e9e46d7765f (diff) | |
parent | 4b1f5c3dc627e62b78a6993f502a35712cb9f400 (diff) | |
download | astro-783db7b3a06ac36be66fc861810280eb923a6888.tar.gz astro-783db7b3a06ac36be66fc861810280eb923a6888.tar.zst astro-783db7b3a06ac36be66fc861810280eb923a6888.zip |
Merge branch 'improve-lighthouse'
Diffstat (limited to 'examples/framework-multiple')
-rw-r--r-- | examples/framework-multiple/src/pages/index.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/framework-multiple/src/pages/index.astro b/examples/framework-multiple/src/pages/index.astro index 826a9d5f9..706e4863f 100644 --- a/examples/framework-multiple/src/pages/index.astro +++ b/examples/framework-multiple/src/pages/index.astro @@ -6,10 +6,11 @@ import { PreactCounter } from '../components/PreactCounter.tsx'; import VueCounter from '../components/VueCounter.vue'; import SvelteCounter from '../components/SvelteCounter.svelte'; + // Full Astro Component Syntax: // https://github.com/snowpackjs/astro/blob/main/docs/core-concepts/astro-components.md --- -<html> +<html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" /> |