wuhu-torn-helper/rollup-prod.config.js
2023-02-25 13:53:40 +08:00

7 lines
204 B
JavaScript

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