加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.mix.js 2.31 KB
一键复制 编辑 原始数据 按行查看 历史
张世平 提交于 2023-08-31 17:51 . fix
const mix = require('laravel-mix');
require('laravel-mix-tailwind');
if(typeof path=="undefined"){
var path = require('path');
}
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
let basePath = 'public/';
let jsPath = 'js';
let cssPath = 'css';
let asset_url = process.env.ASSET_URL || '';
if(asset_url.indexOf('$')==0){
let asset_url_key = asset_url.replaceAll(/(\$|\{|\})/g,'');
asset_url = process.env[asset_url_key] || '';
}
mix.setPublicPath(basePath);
mix.webpackConfig({
resolve: {
alias: {
"common_components": path.resolve(__dirname, 'resources/js/components'),
"admin_components": path.resolve(__dirname, 'resources/js/pages/admin/components'),
"open_components": path.resolve(__dirname, 'resources/js/pages/open/components'),
"pages_components": path.resolve(__dirname, 'resources/js/pages/components'),
"pages": path.resolve(__dirname, 'resources/js/pages'),
"bower_components_path": path.resolve(__dirname, 'public/bower_components'),
"public_path": path.resolve(__dirname, 'public'),
"sass":path.resolve(__dirname, 'resources/sass'),
"@":path.resolve(__dirname, 'node_modules'),
},
},
output: {
publicPath: asset_url+'/',
chunkFilename: jsPath+'/components/[name].js?id=[chunkhash]',
}
});
if(process.argv.includes('--css')){
global.Mix.manifest.name = 'mix-manifest-css.json';
mix.less('resources/less/adminlte.less', cssPath)
.sass('resources/sass/app.scss', cssPath);
}else if(process.argv.includes('--tailwindcss')){
global.Mix.manifest.name = 'mix-manifest-tailwindcss.json';
mix.sass('resources/sass/tailwindcss.scss', cssPath)
.tailwind();
}else {
global.Mix.manifest.name = 'mix-manifest.json';
mix.js('resources/js/bootstrap.js', jsPath)
.js('resources/js/app.js', jsPath);
//mix.tailwind();
}
mix.version();
if (!mix.inProduction()) {
mix.sourceMaps();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化