From 858e2024b828bdb71e82b6fe58388f0dcbc08b12 Mon Sep 17 00:00:00 2001 From: Rakantor Date: Sun, 13 Nov 2022 20:54:10 +0100 Subject: [PATCH] Configure Nuxt to use the compiler-included Vue build --- nuxt.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nuxt.config.js b/nuxt.config.js index 253939b..6c248da 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -100,6 +100,9 @@ export default { // Build Configuration: https://go.nuxtjs.dev/config-build build: { + extend(config) { + config.resolve.alias.vue = 'vue/dist/vue.common' + }, transpile: [ 'vee-validate/dist/rules' ],