mirror of
https://github.com/wassname/template.git
synced 2026-06-27 22:24:10 +08:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
import configs from './rollup.config.dev';
|
|
import babili from 'rollup-plugin-babili';
|
|
|
|
const [componentsConfig, transformsConfig] = configs;
|
|
|
|
componentsConfig.plugins.push(babili({
|
|
comments: false, // means: *remove* comments
|
|
sourceMap: true,
|
|
}));
|
|
|
|
export default [
|
|
componentsConfig,
|
|
transformsConfig,
|
|
];
|