Yannick
Yannick
There is an option `host` and `useLocalIp`. Doesn't this work? https://github.com/yandeu/five-server/blob/main/src/types.ts
Similar to #61
Thanks for your suggestions. I thought about implementing this but don't know how to do it yet.
Thanks! I will try it :)
The root is different of you right-click a folder or a file. If you click "Open with Five Server (as root)", the selected folder becomes the root of the http...
Is this similar to https://github.com/yandeu/five-server-vscode/issues/17?
I guess we could turn off this rule: https://html-validate.org/rules/element-name.html
Or we could try updating `html-validate`. https://github.com/yandeu/five-server/blob/8bf87e0cc644b6e58b30b49e830aa89b777207b9/package.json#L62
It even requires node 14: https://html-validate.org/changelog/index.html But I'm not sure if they have added support for ``
I found the solution: ```js const htmlvalidate = new HtmlValidate({ // https://html-validate.org/rules/index.html rules: { 'close-attr': 'error', // necessary 'close-order': 'error', // necessary 'element-name': [ 'error', { whitelist: ['dialog'] } ],...