mirror of
https://github.com/RdvSpeakers/rdvspeakers-theme-hugo.git
synced 2026-03-10 08:51:19 +00:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
import {default as defaultConfig} from './rollup.config';
|
|
import {uglify} from "rollup-plugin-uglify";
|
|
|
|
export default {
|
|
...defaultConfig,
|
|
plugins: [
|
|
...defaultConfig.plugins,
|
|
uglify({sourcemap: false})
|
|
]
|
|
};
|