sublime text 配置本地靜態服務器方法

一、Ctrl + Shift +P,啓動Sublime Text的命令行 
二、輸入install Package打開插件安裝命令 
三、輸入SublimeServer,回車直接安裝便可 
四、安裝完成後,點擊工具選項,就能夠看到SublimeServer工具了,而後點擊Settings,查看SublimeServer的基本配置,這裏能夠修改服務器端口,文件擴展名等。html

{
    "attempts": 5,
    "autorun": false,
    "defaultExtension": ".html",
    "interval": 500,
    "mimetypes":
    {
        "": "application/octet-stream",
        ".c": "text/plain",
        ".h": "text/plain",
        ".py": "text/plain"
    },
    "port": 8090 //默認是8080,可修改
}

  

五、在工具中點擊SublimeServer下的Start SublimeServer,就能夠啓動服務器了 
6.在html文件任意處右鍵點擊,能夠看到View in SublimeServer,點擊後自動打開網頁。服務器

相關文章
相關標籤/搜索