如何创建' mix-manifest.json'对于具有绝对路径的图像路径?
'纱线生产'正在为图像路径创建一个mix-manifest.json,但是当我运行' yarn run dev' mix-manifest.json仅包含css / js的路径。我还需要图像的路径,因为它在Blade视图上使用mix(' images / example.png')函数给出了错误。
我的配置怎么办?
请参阅下面的webpack.mix.js配置
mix.copyDirectory('resources/assets/vendors-page', 'public/vendors-page');
// mix.copy('resources/assets/images/**/*', 'public/imagess', false);
if (mix.inProduction()) {
// mix.version();
mix.version(['public/images']);
}