mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
16 lines
408 B
JavaScript
16 lines
408 B
JavaScript
|
import * as path from 'path'
|
||
|
import * as url from 'url'
|
||
|
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
|
||
|
|
||
|
import config from '../webpack.plugin.config.mjs'
|
||
|
|
||
|
export default () => config({
|
||
|
name: 'ssh',
|
||
|
dirname: __dirname,
|
||
|
alias: {
|
||
|
'cpu-features': false,
|
||
|
'./crypto/build/Release/sshcrypto.node': false,
|
||
|
'../build/Release/cpufeatures.node': false,
|
||
|
},
|
||
|
})
|