Browse Source

pas2js: fixed compileserver default mime type html

git-svn-id: trunk@41694 -
Mattias Gaertner 6 years ago
parent
commit
6217d44d0b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/pas2js/httpcompiler.pp

+ 1 - 1
utils/pas2js/httpcompiler.pp

@@ -285,7 +285,7 @@ end;
 procedure THTTPCompilerApplication.LoadDefaultMimeTypes;
 begin
   MimeTypes.AddType('application/xhtml+xml','xhtml;xht');
-  MimeTypes.AddType('text/html','htmll;htm');
+  MimeTypes.AddType('text/html','html;htm');
   MimeTypes.AddType('text/plain','txt');
   MimeTypes.AddType('application/javascript','js');
   MimeTypes.AddType('text/plain','map');