Questions tagged [vuetify-loader]

19 questions
12
votes
3 answers

Using Scss Variable Overrides in Vue 3 with Vuetify 3 Beta Using Vue CLI

I am working on a project using Vue 3, Vuetify 3.0.0 (beta 0), and the latest Vue-CLI. I am trying to customize the vuetify font, however every method i've found online to override the vue sass variables has not worked. The first attempt I made was…
Dragonman117
  • 478
  • 4
  • 13
7
votes
3 answers

Compile error [VueLoaderPlugin Error] vue-loader 15 currently does not support vue rules with oneOf

I have project (Laravel with vue.js)downloaded from Gitlab and after i installed the dependencies (npm install & composer install), i can not compile it,as when i try typing: npm run watch, i got below error: Note:i deleted package-lock.json because…
Alaa
  • 167
  • 1
  • 3
  • 10
3
votes
3 answers

VuetifyLoaderPlugin Error No matching rule for vue-loader found

Im trying to install the vuetify but it is giving me this Error: [VuetifyLoaderPlugin Error] No matching rule for vue-loader found. Make sure there is at least one root-level rule that uses vue-loader and VuetifyLoaderPlugin is applied after…
3
votes
0 answers

Getting Error in vuetify.min.css expected '}' got :

I am trying to use vuetify framework in my existing project, i installed all the dependencies and added rules in webpack but I am getting an error while using vuetify.min.css file. My webpack file is: const path = require('path') const webpack =…
rupamwadia
  • 41
  • 1
  • 4
3
votes
1 answer

Conflict order when compiling Vue project

I'm currently having problem compiling my project, already tried this solution, but when i deploy my application my toolbar and some other components just lost their base style. My current package.json. "dependencies": { "axios": "^0.19.2", …
2
votes
3 answers

Vuetify - how to disable Display Helpers in a custom build?

Some of Vuetify's display helpers (https://vuetifyjs.com/en/styles/display/#display) collide with Tailwind classes. In Bootstrap, fore example, there's a way to disable (=not include) utility classes in a custom build. Searched in the docs and in…
nadavelyashiv
  • 309
  • 1
  • 3
  • 12
2
votes
3 answers

vuetify-loader 1.6 is incompatible with laravel mix, vue-loader 15 currently does not support vue rules with oneOf

I'm trying to install the vue on the laravel. I believe I got it, but when I run the npm run watch or npm run dev, it generates this error. I've tried several things and I can't solve Error: [VueLoaderPlugin Error] vue-loader 15 currently does not…
user14050527
1
vote
1 answer

Vuetify treeshaking not working with webpack

I can't figure out why vuetify treeshaking isn't working on my app, since i followed every steps described here. Am I missing something ? I'm not using vue CLI, but webpack 5 with vuetify loader. Here is the interactive treemap visualization from…
David
  • 11
  • 4
1
vote
0 answers

What does Vuetify `new Vue({ vuetify, render: h => h(App) }).$mount('#app')` do? Can I ignore it?

I'm building a component library based on Vuetify. Vuetify installation tells people to add this line new Vue({ vuetify, render: h => h(App) }).$mount('#app') However, I want people to be able to just import my component. It looks like…
Joseph
  • 3,974
  • 7
  • 34
  • 67
1
vote
2 answers

Why vue-cli understand I've installed vue-cli-plugin-vuetify and vuetify-loader?

When I create a fresh vue-cli project via this command vue create hello-word and this command to install vuetify vue add vuetify Then I saw my git changes like this Two new dependencies have been installed in…
Joseph
  • 3,974
  • 7
  • 34
  • 67
0
votes
0 answers

Vuetify colors are not shown after vue-cli build

I'm trying to build the default Vuetify example (HelloWorld.vue and App.vue) into a WebComponent that I can then insert into a simple HTML page. HelloWorld.vue: import { VCol, VContainer, VRow, VImg } from "vuetify/lib" export…
0
votes
0 answers

Replace vuetify-loader with webpack-plugin-vuetify

ERROR Error: vuetify-loader is only for use with vuetify 2, replace it with webpack-plugin-vuetify try to upgrade vue version but getting block with vuetify-loader error
0
votes
0 answers

How to setup vuetify with vuetify-loader

I'm getting the error below when I run yarn serve: ERROR Failed to compile with 1 errors 4:03:58 p.m. error in ./node_modules/vuetify/src/styles/main.sass Module build failed (from…
Mark
  • 3,138
  • 5
  • 19
  • 36
0
votes
2 answers

[Vue warn]: Failed to resolve component: v-toolbar-title issue vue3 and vuetify 3.0.0-alpha.0 version

I am getting below issue while running the sample application with below configuration. package.json > "vue": "^3.0.0", > "vue-textarea-autosize": "^1.1.1", > "vuetify":"^3.0.0-alpha.0" Main.js import { createApp } from 'vue' import App from…
Devendra
  • 125
  • 2
  • 10
0
votes
1 answer

Turnoff a-la-carte (treeshaking) in vuetify

I am writing a custom vuetify components-based library. when i try to build and install to another app it doesn't work. I struggle for few days and find out if the component define inside custom component and custom component call together it…
vishnu raj
  • 106
  • 3
1
2