-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.mix.js
61 lines (61 loc) · 2.31 KB
/
webpack.mix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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();
}