配置文件 config.json
{
"ftp": {
"host": "10.0.0.10",
"port": 22,
"username": "root",
"password": "password",
"remotePath": "/home/frontend/workspace/npx-template",
"patterns": ["client/dist"],
"keepFinder": false
},
"entryPrefixer": "prefixer.",
"jsdoc": false,
"postcss": {
"postcss-reporter": false,
"autoprefixer": {
"browsers": ["last 2 versions"]
},
...
},
"webpack": {
"no-common": false,
"banner": "something about copyright"
},
"default": {
"client": {
"port": 9000,
"publicPath": "http://127.0.0.1:9000"
}
},
"experiment": {
"client": {
"publicPath": "http://exp.website.com"
}
},
"production": {
"client": {
"publicPath": "http://prod.website.com"
}
}
}