Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 607 Bytes

README.md

File metadata and controls

36 lines (32 loc) · 607 Bytes

hosts

enable remapping of requests for one host to a different IP, overriding DNS

Usage

By CLI

$ mod hosts "127.0.0.1 localhost"

By Modfile

module.exports = {
    plugins: {
        hosts: "mod-hosts"
    },
    tasks: {
        hosts: {
            group1:{
                hosts: "127.0.0.1 localhost"
            },
            group2:{
                hosts: ["127.0.0.1 www.qq.com", "127.0.0.1 example.com"]
            },
			group3:{
                hosts: "./path/to/my/hosts/file"
            }
        }
    },
    targets: {
        dist: "hosts"
    }
};