From f58c22e037c758efb1e2a64c3eaa5d4bdb7f664a Mon Sep 17 00:00:00 2001 From: Joe Pavitt Date: Thu, 16 Nov 2023 09:17:06 +0000 Subject: [PATCH] Use full vue build to allow for runtime compiling of ui-template --- vite.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vite.config.js b/vite.config.js index 7bf7bcbb2..dd3ab6d9a 100644 --- a/vite.config.js +++ b/vite.config.js @@ -8,6 +8,11 @@ import { defineConfig } from 'vite' // https://vitejs.dev/config/ export default defineConfig({ + resolve: { + alias: { + vue: 'vue/dist/vue.esm-bundler.js' + } + }, plugins: [vue()], root: 'ui', build: {