We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e0070 commit 912039eCopy full SHA for 912039e
rollup.config.js
@@ -23,6 +23,7 @@ const rootConfig = {
23
}),
24
css(),
25
analyze({ summaryOnly: true }),
26
+ vue({ css: false, template: { optimizeSSR: true } }),
27
],
28
external: [
29
...Object.keys(pkg.dependencies),
@@ -47,7 +48,6 @@ export default [
47
48
format: "esm",
49
file: pkg.module,
50
},
- plugins: [...rootConfig.plugins, vue()],
51
52
// SSR build.
53
{
@@ -57,9 +57,5 @@ export default [
57
file: pkg.main,
58
exports: "named", // remove warning about mixed exports
59
60
- plugins: [
61
- ...rootConfig.plugins,
62
- vue({ css: false, template: { optimizeSSR: true } }),
63
- ],
64
65
];
0 commit comments