wuhu-torn-helper/rollup-prod.config.js
2023-04-03 18:00:41 +08:00

8 lines
251 B
JavaScript

import terser from "@rollup/plugin-terser";
import rollupConfig from "./rollup.config.js";
rollupConfig.plugins.push(terser());
rollupConfig.output.file = 'dist/bundle.min.js';
rollupConfig.output.name = 'bundle.min.js';
export default rollupConfig;