Skip to content

Commit

Permalink
modules/App: add viewport and ie=edge meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeh committed Jan 31, 2020
1 parent 5e7880d commit 63b3998
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/app.mjs
Expand Up @@ -46,8 +46,10 @@ const App = async config => {
html({ lang: state.lang || LANG }, [
head([
meta({ charset: 'utf-8' }),
link(magicCss),
meta({ 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' }),
meta({ name: 'viewport', content: 'width=device-width, initial-scale=1.0' }),
Seo(state),
link(magicCss),
page.Head && page.Head(state),
]),
body([
Expand Down

0 comments on commit 63b3998

Please sign in to comment.