Maksim Nazarjev

Results 11 comments of Maksim Nazarjev

```css ::-webkit-scrollbar { display: none; } ``` as a temp workaround

+1 More and more VueJS projects are migrating now from vue-cli (Webpack) to vite (Rollup). There is a real demand for twilio js sdk to be bundler-agnostic. @Niputi could you...

Maybe it's better to use named slots? One for next, one for prev. Another one for pagination.

I have the same issue. Is there any way to provide fs module?

@NightCatSama, I solved that with importing plugin source file like ```javascript import cVueSlider from 'vue-slider-component/src/vue2-slider.vue' ``` and in webpack config ```javascript { test: /\.vue?$/, exclude: /node_modules\/(?!vue-slider-component)/, loader: 'vue-loader' } ```...

@tuzkituan > This is a workaround for me, but you have to manually refresh the host app whenever the sub app changes: You can solve host refreshing issue by using...

Did work for me: ```js function watchPackages(packageNames) { let isWatching = false; return { name: 'vite-plugin-watch-packages', buildStart() { if (!isWatching) { packageNames.forEach((packageName) => { const absPackagePath = path.resolve('node_modules', packageName); const...

@domoritz It will work only for `build --watch`. I've updated my comment. Sorry for the confusion 😔

Vite has JavaScript API, so it is possible to run both __build --watch__ and __preview__ as a single command: dev.js ```js import { build, preview } from 'vite'; let previewServer;...