Co-authored-by: Thomas Trompette <thomas.trompette@sfr.fr> Co-authored-by: bosiraphael <raphael.bosi@gmail.com> Co-authored-by: Weiko <corentin@twenty.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions <github-actions@twenty.com> Co-authored-by: Charles Bochet <charles@twenty.com>
15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
module.exports = {
|
|
/**
|
|
* This is the main entry point for your application, it's the first file
|
|
* that runs in the main process.
|
|
*/
|
|
entry: './src/main.js',
|
|
// Put your normal webpack config below here
|
|
module: {
|
|
rules: require('./webpack.rules'),
|
|
},
|
|
externals: {
|
|
'@recallai/desktop-sdk': 'commonjs @recallai/desktop-sdk'
|
|
}
|
|
};
|