7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
|
|
import configs from './rollup.config.js';
|
||
|
|
const appBundleConfig = configs[0];
|
||
|
|
appBundleConfig.output.file = 'dist/index.js';
|
||
|
|
appBundleConfig.output.format = 'es';
|
||
|
|
export default [
|
||
|
|
appBundleConfig
|
||
|
|
];
|