We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89927d8 commit b842987Copy full SHA for b842987
.eslintrc.js
@@ -14,7 +14,7 @@ module.exports = {
14
ecmaVersion: 13,
15
parser: '@typescript-eslint/parser',
16
sourceType: 'module',
17
- project: ['./tsconfig.json', './tsconfig.build.json'],
+ project: ['./tsconfig.json'],
18
extraFileExtensions: ['.vue'],
19
},
20
plugins: [
src/install.ts
@@ -1,8 +1,8 @@
1
import { App } from 'vue'
2
3
-import VueMagnifier from '@/components/VueMagnifier.vue'
+import VueMagnifier from './components/VueMagnifier.vue'
4
5
-import '@/css/style.css'
+import './css/style.css'
6
7
VueMagnifier.install = (app: App) => {
8
app.component('VueMagnifier', VueMagnifier)
0 commit comments