diff --git a/vue.config.js b/vue.config.js index 34823164b..d6c807fda 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,3 +1,4 @@ +const path = require('path') require("@hotwax/app-version-info") module.exports = { pluginOptions: { @@ -12,6 +13,13 @@ module.exports = { enableInSFC: true } }, + configureWebpack: { + resolve: { + alias: { + vue: path.resolve('./node_modules/vue') + } + } + }, runtimeCompiler: true, transpileDependencies: ['@hotwax/dxp-components'] }