我知道我的问题对于职业vue.js和Webpack来说是很愚蠢的。我还不是很习惯。
实际上,我和vue.js和webpack有一个小应用程序。我使用命令npm run dev进行开发并查看结果,并查看本地地址:
然后,我做了一个构建版本: npm run build,所以一切都很好,但现在,我不知道如何在本地看到最终结果。我必须做什么或者我错过了什么?
谢谢你的回答
当我使用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: {
我试图使用Webpack文件加载器将静态json资源文件复制到dist/,这样我就可以在Vue.js组件中导入这个json文件。Webpack在运行npm run build时正确地复制了文件,但是当我试图导入文件(如import myJson from '@/static/runtimeConfig.json')时,"myJSON“变量只获取文件路径,而不是实际的JSON文件内容。有人能帮我理解这是为什么吗?
我的webpack文件加载程序配置如下所示:
module: {
//load runtimeConfig.json file through a
我正在使用Symfony + Vue.js,并且我想在所有vue组件中导入我的_variables.sccs文件。我想在所有组件的样式块中使用scss变量
我知道如何在使用vue-cli (使用vue.config.js配置文件)创建的vue应用程序中做到这一点,但我已经尝试在Encore使用的webpack.config.js中以不同的方式复制它。而且也没有办法让它发挥作用。
这是我的webpack.config.js文件:
var Encore = require('@symfony/webpack-encore');
Encore
.setOutputPath(
我在试着用symfony设置vue.js。(此Vue.js配置在laravel中工作正常,但symfony不能,我必须使用symfony进行此项目:( )
根据symfony文档配置的webpack.config.js
var Encore = require('@symfony/webpack-encore');
Encore
// the project directory where all compiled assets will be stored
.setOutputPath('web/build/')
// the pu