wip
This commit is contained in:
parent
25506f5d57
commit
6adcc52072
20
package.json
20
package.json
|
@ -5,7 +5,7 @@
|
||||||
"build": "vite build"
|
"build": "vite build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@hcaptcha/vue-hcaptcha": "^0.3.2",
|
"@hcaptcha/vue3-hcaptcha": "^0.3.2",
|
||||||
"@sentry/integrations": "^7.53.1",
|
"@sentry/integrations": "^7.53.1",
|
||||||
"@sentry/tracing": "^6.11.0",
|
"@sentry/tracing": "^6.11.0",
|
||||||
"@sentry/vue": "^6.11.0",
|
"@sentry/vue": "^6.11.0",
|
||||||
|
@ -18,30 +18,28 @@
|
||||||
"js-cookie": "^2.2.1",
|
"js-cookie": "^2.2.1",
|
||||||
"js-sha256": "^0.9.0",
|
"js-sha256": "^0.9.0",
|
||||||
"libphonenumber-js": "^1.10.44",
|
"libphonenumber-js": "^1.10.44",
|
||||||
"portal-vue": "^2.1.7",
|
|
||||||
"prismjs": "^1.24.1",
|
"prismjs": "^1.24.1",
|
||||||
"qrcode": "^1.5.1",
|
"qrcode": "^1.5.1",
|
||||||
"query-builder-vue": "^1.2.0",
|
"query-builder-vue": "^1.2.0",
|
||||||
"tinymotion": "^0.2.0",
|
"tinymotion": "^0.2.0",
|
||||||
"vform": "^2.1.1",
|
"vform": "^2.1.1",
|
||||||
"vt-notifications": "^0.4.1",
|
"vue3-vt-notifications": "^1.0.0",
|
||||||
"vue": "^2.7.14",
|
"vue": "^3.1.0",
|
||||||
|
"@vue/compat": "^3.1.0",
|
||||||
"vue-chartjs": "^4.1.0",
|
"vue-chartjs": "^4.1.0",
|
||||||
"vue-clickaway": "^2.2.2",
|
"vue3-click-away": "^1.2.4",
|
||||||
"vue-codemirror": "^4.0.6",
|
"vue-codemirror": "^4.0.6",
|
||||||
"vue-confetti": "^2.3.0",
|
"vue-confetti": "^2.3.0",
|
||||||
"vue-country-flag": "^2.3.2",
|
"vue-country-flag-next": "^2.3.2",
|
||||||
"vue-i18n": "^8.25.0",
|
"vue-i18n": "^8.25.0",
|
||||||
"vue-meta": "^2.4.0",
|
"vue-meta": "^2.4.0",
|
||||||
"vue-notion": "^0.4.0",
|
"vue-notion": "^3.0.0-beta.1",
|
||||||
"vue-plugin-load-script": "^1.3.2",
|
"vue-plugin-load-script": "^1.3.2",
|
||||||
"vue-router": "^3.5.2",
|
"vue-router": "^3.5.2",
|
||||||
"vue-signature-pad": "^2.0.5",
|
"vue-signature-pad": "^2.0.5",
|
||||||
"vue-tailwind": "^2.5.0",
|
|
||||||
"vue2-editor": "^2.10.3",
|
"vue2-editor": "^2.10.3",
|
||||||
"vuedraggable": "^2.24.3",
|
"vuedraggable": "^2.24.3",
|
||||||
"vuex": "^3.6.2",
|
"vuex": "^4.1.0"
|
||||||
"vuex-router-sync": "^5.0.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.20.12",
|
"@babel/core": "^7.20.12",
|
||||||
|
@ -69,6 +67,6 @@
|
||||||
"tailwindcss": "^3.2.4",
|
"tailwindcss": "^3.2.4",
|
||||||
"vite": "^4.0.4",
|
"vite": "^4.0.4",
|
||||||
"vue-loader": "^15.9.8",
|
"vue-loader": "^15.9.8",
|
||||||
"vue-template-compiler": "^2.6.14"
|
"@vue/compiler-sfc": "^3.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {fixedClasses} from '../../plugins/config/vue-tailwind/datePicker.js'
|
|
||||||
import inputMixin from '~/mixins/forms/input.js'
|
import inputMixin from '~/mixins/forms/input.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -15,6 +15,11 @@ const plugins = [
|
||||||
transformAssetUrls: {
|
transformAssetUrls: {
|
||||||
base: null,
|
base: null,
|
||||||
includeAbsolute: false
|
includeAbsolute: false
|
||||||
|
},
|
||||||
|
compilerOptions: {
|
||||||
|
compatConfig: {
|
||||||
|
MODE: 2
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -39,13 +44,14 @@ export default defineConfig({
|
||||||
plugins: plugins,
|
plugins: plugins,
|
||||||
optimizeDeps: {
|
optimizeDeps: {
|
||||||
exclude: [
|
exclude: [
|
||||||
'vt-notifications', 'vue-tailwind', 'vue-tailwind/dist/vue-tailwind.css'
|
'vt-notifications'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'~': '/resources/js',
|
'~': '/resources/js',
|
||||||
'@': '/resources'
|
'@': '/resources',
|
||||||
|
vue: '@vue/compat'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue