mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-05 14:34:54 +00:00
9 lines
225 B
JavaScript
9 lines
225 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: 'electron',
|
|
dirname: __dirname,
|
|
})
|