当我使用 VueJS 和 symfony 提供的捆绑 Webpack encore 从基本 symfony 应用程序加载页面时出现以下错误
[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
所以我需要将 VueJS 的别名更改为 webpack:
resolve: {
alias: {
vue: 'vue/dist/vue.js'
}
}
但是我没有在 Webpack Encore 中找到任何可以更改此设置的内容。