mirror of
https://github.com/swc-project/swc.git
synced 2024-12-27 15:42:51 +03:00
31020e46d8
- Handle modules (via swcrc) - swc.bundle([conf1, conf2]) - Correct chunking
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
a: path.join(__dirname, 'entry1.js'),
|
|
b: path.join(__dirname, 'entry2.js'),
|
|
},
|
|
} |