代码拉取完成,页面将自动刷新
同步操作将从 aipaw/wookteam 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
//复制资源
mix.copy('resources/assets/statics/public', 'public');
//生成vue页面js
mix.js('resources/assets/js/main/app.js', 'js/app.js');
//生成css样式文件
mix.sass('resources/assets/sass/app.scss', 'css');
//配置webpack
mix.webpackConfig({
output: {
// 路由懒加载文件路径
chunkFilename: 'js/build/[name].js?[hash:8]',
},
devServer: {
disableHostCheck: true,
},
module: {
rules: [{
// 图片资源保存路径规则
test: /(\.(png|jpe?g|gif)$|^((?!font).)*\.svg$)/,
loaders: [
{
loader: 'file-loader',
options: {
name: path => {
path = path.replace(/\\/g, '/');
// 自定义部分
try {
if (/\/resources\/assets\//.test(path)) {
let file = path.substring(path.indexOf('/resources/assets/') + '/resources/assets/'.length);
if (file) {
if (file.substring(0, 3) === 'js/') file = 'pages/' + file.substring(3);
if (file.substring(0, 7) === 'images/') file = file.substring(7);
return 'images/' + file + '?[hash:8]'
}
}
} catch (e) { }
// 系统定义部分
if (!/node_modules|bower_components/.test(path)) {
return (
Config.fileLoaderDirs.images + '/[name].[ext]?[hash:8]'
);
}
return (
Config.fileLoaderDirs.images + '/vendor/' + path.replace(
/((.*(node_modules|bower_components))|images|image|img|assets)\//g,
''
) + '?[hash:8]'
);
},
publicPath: Config.resourceRoot
}
}, {
loader: 'img-loader',
options: Config.imgLoaderOptions
}
]
}, {
// 字体资源保存路径规则
test: /(\.(woff2?|ttf|eot|otf)$|font.*\.svg$)/,
loader: 'file-loader',
options: {
name: path => {
path = path.replace(/\\/g, '/');
// 自定义部分
try {
if (/\/resources\/assets\//.test(path)) {
let file = path.substring(path.indexOf('/resources/assets/') + '/resources/assets/'.length);
if (file) {
if (file.substring(0, 3) === 'js/') file = 'pages/' + file.substring(3);
if (file.substring(0, 7) === 'fonts/') file = file.substring(7);
return 'fonts/' + file + '?[hash:8]'
}
}
} catch (e) { }
// 系统定义部分
if (!/node_modules|bower_components/.test(path)) {
return Config.fileLoaderDirs.fonts + '/[name].[ext]?[hash:8]';
}
return (
Config.fileLoaderDirs.fonts + '/vendor/' + path.replace(
/((.*(node_modules|bower_components))|fonts|font|assets)\//g,
''
) + '?[hash:8]'
);
},
publicPath: Config.resourceRoot
}
}]
}
}).options({
uglify: {
uglifyOptions: {
compress: { inline: false }
}
},
hmrOptions: {
port: '8088'
}
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。