diff options
author | 2022-07-26 01:36:57 -0400 | |
---|---|---|
committer | 2022-08-05 21:41:09 -0700 | |
commit | bcca548d462dc0feead679bd046e40efb7a95780 (patch) | |
tree | 20e113dbaaba03c17ff8efe5e8f7302ba1a09ee4 /examples/framework-lit/src | |
parent | 4de35f3b703db52f51463769e3aef4b23d2864e3 (diff) | |
download | astro-bcca548d462dc0feead679bd046e40efb7a95780.tar.gz astro-bcca548d462dc0feead679bd046e40efb7a95780.tar.zst astro-bcca548d462dc0feead679bd046e40efb7a95780.zip |
add charset utf-8
Diffstat (limited to 'examples/framework-lit/src')
-rw-r--r-- | examples/framework-lit/src/pages/index.astro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/framework-lit/src/pages/index.astro b/examples/framework-lit/src/pages/index.astro index 3998b6cf7..5aafa0534 100644 --- a/examples/framework-lit/src/pages/index.astro +++ b/examples/framework-lit/src/pages/index.astro @@ -10,6 +10,8 @@ import { MyCounter } from '../components/my-counter.js'; <!DOCTYPE html> <html lang="en"> <head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width" /> <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <title>Demo</title> </head> |