mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00

resolves #25104 BREAKING CHANGE: `@ionic/vue` and `@ionic/vue-router` no longer ship a CommonJS entry point. Instead, only an ES Module entry point is provided for improved compatibility with Vite.
12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
export default {
|
|
input: 'dist-transpiled/index.js',
|
|
output: [
|
|
{
|
|
file: 'dist/index.js',
|
|
format: 'es',
|
|
sourcemap: true,
|
|
}
|
|
],
|
|
external: ['vue-router', 'vue']
|
|
};
|