Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
My current setup works fine with JS imports but when I try to import parts instead of everything all at once from the ej2 package I am getting constant import errors.
+-- @syncfusion/[email protected]
+-- @syncfusion/[email protected]
+-- @types/[email protected]
+-- @types/[email protected]
+-- @types/[email protected]
+-- @vitejs/[email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]
`-- [email protected]
My HomeView.vue includes nothing more than the following:
<style lang="scss">
@import "../../node_modules/@syncfusion/ej2/bootstrap5.scss";
</style>
<style lang="scss">
@import "@syncfusion/ej2/bootstrap5.scss";
</style>
<style lang="scss"></style>@import "node_modules/@syncfusion/ej2/bootstrap5.scss";
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
'@node': path.resolve(__dirname, 'node_modules'),
}
},
server: {
watch: {
usePolling: true
}
}
})
I was kind of hoping to kick star this project as one of the sales reps promised Vue 3 stability but I've been bumping into nothing but errors all night... To be fair, what works works very good and looks nice!