Files
tabby/tabby-ssh/webpack.config.mjs
Eugene Pankov 0187a83cfe angular 15 WIP
2023-02-05 21:02:50 +01:00

14 lines
379 B
JavaScript

import * as path from 'path'
const __dirname = path.dirname(new URL(import.meta.url).pathname)
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,
},
})