mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-16 06:36:48 +03:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
mode: 'development',
|
||
|
entry: './test/electron/fixture/src/renderer.js',
|
||
|
output: {
|
||
|
filename: 'renderer.js',
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
},
|
||
|
};
|