优化开发提示
parent
1265d0e94f
commit
8c26342cd5
|
@ -136,7 +136,11 @@ export default async function createServer(root = '', conf = {}) {
|
|||
if (isIndex) {
|
||||
res.setHeader('content-type', MIME_TYPES.html)
|
||||
res.writeHead(200, 'OK')
|
||||
res.end('<ul>' + indexPage + '</ul>')
|
||||
res.end(
|
||||
'<div>注意: 你看到这个页面, 仅在开发时可见。<br>仅为了方便开发多页应用时访问自己想要修改的页面, 而不需要手动输入地址。</div><ul>' +
|
||||
indexPage +
|
||||
'</ul>'
|
||||
)
|
||||
} else {
|
||||
res.setHeader('accept-ranges', 'bytes')
|
||||
|
||||
|
@ -313,7 +317,7 @@ export default async function createServer(root = '', conf = {}) {
|
|||
console.log(
|
||||
' 本地: %s://%s:%d%s',
|
||||
USE_HTTPS ? 'https' : 'http',
|
||||
'127.0.0.1',
|
||||
USE_HTTPS ? 'localhost' : '127.0.0.1',
|
||||
PORT,
|
||||
DEPLOY_PATH
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "fite",
|
||||
"type": "module",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"bin": {
|
||||
"fite": "index.js"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue