mirror of
https://github.com/LinoSchmidt/StickExporterTX.git
synced 2026-03-21 10:00:47 +01:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
import baseConfig from "./webpack.base.config.js";
|
|
import {merge} from 'webpack-merge';
|
|
|
|
export default merge(baseConfig, {
|
|
mode: 'production',
|
|
target: 'electron-main',
|
|
entry: './src/index.ts',
|
|
output: {
|
|
filename: '../index.build.js'
|
|
},
|
|
}); |