import { rollup } from "rollup"; import { terser } from "rollup-plugin-terser"; rollup({ input: "main.js", plugins: [terser()] }); ...
確定! 回上一頁