Hey, first of all, really nice plugin.
I'm trying to include your plugin through my quasar env and as long as I'm in dev there is no issue but when i try to compile it for prod it throw me the errors below:
[vite:css] You should write display: flex by final spec instead of display: box
24 | -moz-box-orient: horizontal;
25 | -moz-box-align: stretch;
26 | display: box;
| ^
27 | box-orient: horizontal;
28 | box-align: stretch;
[vite:css] You should write display: flex by final spec instead of display: box
40 | display: -webkit-box;
41 | display: -moz-box;
42 | display: box;
| ^
43 | box-pack: center;
44 | box-orient: vertical;
Error when using sourcemap for reporting an error: Can't resolve original location of error.
'pushScopeId' is not exported by node_modules/vue-shell/node_modules/vue/dist/vue.runtime.esm.js, imported by node_modules/vue-shell/src/v-shell.vue
file: /data/neon-freaks.com/node_modules/vue-shell/src/v-shell.vue:166:285
164: };
165:
166: import { openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, vModelText as _vModelText, withKeys as _withKeys, withDirectives as _withDirectives, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue"
^
167:
168: const _withScopeId = n => (_pushScopeId("data-v-4259adda"),n=n(),_popScopeId(),n)
/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:198
base = Object.assign(new Error(base.message), base);
^
Error: 'pushScopeId' is not exported by node_modules/vue-shell/node_modules/vue/dist/vue.runtime.esm.js, imported by node_modules/vue-shell/src/v-shell.vue
at error (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:198:30)
at Module.error (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:12543:16)
at Module.traceVariable (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:12902:29)
at ModuleScope.findVariable (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:11554:39)
at ReturnValueScope.findVariable (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:6486:38)
at Identifier.bind (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:7553:40)
at CallExpression.bind (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:5383:23)
at CallExpression.bind (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:9049:15)
at SequenceExpression.bind (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:5379:73)
at ArrowFunctionExpression.bind (/data/neon-freaks.com/node_modules/rollup/dist/shared/rollup.js:5383:23) {
code: 'MISSING_EXPORT',
url: 'https://rollupjs.org/guide/en/#error-name-is-not-exported-by-module',
id: '/data/neon-freaks.com/node_modules/vue-shell/src/v-shell.vue',
pos: 4349,
loc: {
column: 285,
file: '/data/neon-freaks.com/node_modules/vue-shell/src/v-shell.vue',
line: 166
},
Hey, first of all, really nice plugin.
I'm trying to include your plugin through my quasar env and as long as I'm in dev there is no issue but when i try to compile it for prod it throw me the errors below: