2.0.0 • Published 7 months ago

dd-autossh-test v2.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 months ago

webpack接入

const autossh = require('dd-autossh')
module.exports = {
  //其他配置
  plugins: [
    new autossh({
      host: '******',
      username: '***',
      password: '******',
      remotePath: '****'
    })
  ]
}

fetk接入

const autossh = require('dd-autossh')
module.exports = getConfig({
  //其他配置
  configurePlugins(pluginIns){
    pluginIns.push({
    name: 'autossh',
      plugin: autossh,
      args: [{
        host: '****',
        username: '****',
        password: '****',
        remotePath: '****'
      }],
    })
  }
});
2.0.0

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago