diff options
author | 2021-08-04 08:30:58 -0400 | |
---|---|---|
committer | 2021-08-04 08:30:58 -0400 | |
commit | c7aca2c9b258ed941f7089dfa3ad092be9419a76 (patch) | |
tree | b04374786c862391ef457c672a4eacb478d9ceb7 /examples/with-nanostores/src | |
parent | 058388c87479352844a210405a0e7290e99c334d (diff) | |
download | astro-c7aca2c9b258ed941f7089dfa3ad092be9419a76.tar.gz astro-c7aca2c9b258ed941f7089dfa3ad092be9419a76.tar.zst astro-c7aca2c9b258ed941f7089dfa3ad092be9419a76.zip |
Reduce meta viewport tag (#1006)
Diffstat (limited to 'examples/with-nanostores/src')
-rw-r--r-- | examples/with-nanostores/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-nanostores/src/pages/index.astro b/examples/with-nanostores/src/pages/index.astro index 94afa8b0a..b4d99028c 100644 --- a/examples/with-nanostores/src/pages/index.astro +++ b/examples/with-nanostores/src/pages/index.astro @@ -11,7 +11,7 @@ import AdminsPreact from '../components/AdminsPreact.jsx'; <html lang="en"> <head> <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="viewport" content="width=device-width"> <title>Astro</title> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> |