mirror of
https://github.com/scratchfoundation/scratch-desktop.git
synced 2024-12-23 06:02:30 -05:00
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
const path = require('path');
|
|
|
|
const makeConfig = require('./webpack.makeConfig.js');
|
|
|
|
module.exports = makeConfig({
|
|
name: 'main',
|
|
useReact: false,
|
|
babelPaths: [
|
|
path.resolve(__dirname, 'src', 'main')
|
|
]
|
|
});
|