add lang and raise maximum scale

This commit is contained in:
notgne2 2020-02-15 22:35:08 -07:00
parent 7e2d4d0fef
commit 5e19902709
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ let
templateHtml = pkgs.writeText "template.html" ''
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>${prettyName}</title>

View File

@ -119,7 +119,7 @@ let plugins = (env, argv) => [
minify: argv.mode == 'production' ? htmlMin : false,
template: './template.html',
meta: {
viewport: 'width=320, initial-scale=1, maximum-scale=1'
viewport: 'width=320, initial-scale=1, maximum-scale=5'
}
}),
];