diff options
author | 2021-07-19 18:23:39 -0700 | |
---|---|---|
committer | 2021-07-19 18:23:39 -0700 | |
commit | a7e66666e49e3286639439cc993869b3a87ff251 (patch) | |
tree | e7d33647bdc5099a5b23268aab11fcae3d78628b /examples/snowpack/src | |
parent | 11100d62ef02a90ea9d0615b942e8839adc0ea45 (diff) | |
download | astro-a7e66666e49e3286639439cc993869b3a87ff251.tar.gz astro-a7e66666e49e3286639439cc993869b3a87ff251.tar.zst astro-a7e66666e49e3286639439cc993869b3a87ff251.zip |
tsconfig fix (#752)
Diffstat (limited to 'examples/snowpack/src')
-rw-r--r-- | examples/snowpack/src/layouts/content-with-cover.astro | 2 | ||||
-rw-r--r-- | examples/snowpack/src/layouts/content.astro | 2 | ||||
-rw-r--r-- | examples/snowpack/src/layouts/post.astro | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/snowpack/src/layouts/content-with-cover.astro b/examples/snowpack/src/layouts/content-with-cover.astro index ccc1f671b..92b02a4cc 100644 --- a/examples/snowpack/src/layouts/content-with-cover.astro +++ b/examples/snowpack/src/layouts/content-with-cover.astro @@ -8,7 +8,7 @@ const { content } = Astro.props; --- <!doctype html> -<html lang={ content.lang ?? 'en' }> +<html lang={ content.lang || 'en' }> <head> <style> diff --git a/examples/snowpack/src/layouts/content.astro b/examples/snowpack/src/layouts/content.astro index a69f78f17..4c442c92e 100644 --- a/examples/snowpack/src/layouts/content.astro +++ b/examples/snowpack/src/layouts/content.astro @@ -8,7 +8,7 @@ const { content } = Astro.props; --- <!doctype html> -<html lang={ content.lang ?? 'en' }> +<html lang={ content.lang || 'en' }> <head> <BaseHead title={content.title} description={content.description} permalink="TODO" /> diff --git a/examples/snowpack/src/layouts/post.astro b/examples/snowpack/src/layouts/post.astro index 0662b3f1b..bcdd697e6 100644 --- a/examples/snowpack/src/layouts/post.astro +++ b/examples/snowpack/src/layouts/post.astro @@ -7,7 +7,7 @@ const { content } = Astro.props; --- <!doctype html> -<html lang={ content.lang ?? 'en' }> +<html lang={ content.lang || 'en' }> <head> <style lang="scss"> |