mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
20 lines
356 B
JavaScript
20 lines
356 B
JavaScript
import { terser } from "rollup-plugin-terser";
|
|
|
|
export default {
|
|
input: 'dist-transpiled/index.js',
|
|
output: [
|
|
{
|
|
file: 'dist/index.js',
|
|
format: 'esm',
|
|
sourcemap: true
|
|
},
|
|
{
|
|
file: 'dist/index.min.js',
|
|
format: 'esm',
|
|
sourcemap: true,
|
|
plugins: [terser()]
|
|
}
|
|
],
|
|
external: ['vue-router', 'vue']
|
|
};
|