我有一个与wordpress API集成的vuejs应用程序,并使用Axios提取数据。
这是我的构建脚本
view.backgroundColor = UIColor.black.withAlphaComponent(0.5)
我希望整合prerender工具进行服务器端渲染以帮助SEO。不幸的是,我不确定从哪里开始。我试过在这里使用类似的东西
let mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your theme. By default, we are compiling the Sass file for the theme
| as well as bundling up all the JS files.
|
*/
mix.setPublicPath('dist')
.js('src/app.js', 'scripts/')
.extract([
'jquery',
'axios',
'babel-polyfill',
'lodash',
'tether',
'vue'
])
.version();
我不断收到构建错误,因为我确信我做错了。我正在寻找一些关于我应该注意的指导。
由于