mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 06:17:28 -08:00
Mix fuckery
This commit is contained in:
parent
87992b7f71
commit
e1ad28aa20
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
BIN
public/css/dist/all.css
vendored
BIN
public/css/dist/all.css
vendored
Binary file not shown.
BIN
public/js/dist/all.js
vendored
BIN
public/js/dist/all.js
vendored
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
|
||||
const { mix } = require('laravel-mix');
|
||||
|
||||
mix.setPublicPath('build'); //this throws everything to root dir 'build'
|
||||
mix.setPublicPath('farts'); //this throws everything to root dir 'build'
|
||||
|
||||
|
||||
// This generates a file called app.css, which we use
|
||||
|
@ -16,8 +16,7 @@ mix
|
|||
.less('resources/assets/less/AdminLTE.less', 'css')
|
||||
.less('resources/assets/less/app.less', 'css')
|
||||
.less('resources/assets/less/overrides.less', 'css')
|
||||
|
||||
mix.styles([
|
||||
.styles([
|
||||
'build/css/app.css',
|
||||
'public/css/AdminLTE.css',
|
||||
'resources/assets/css/font-awesome/font-awesome.min.css',
|
||||
|
@ -25,15 +24,12 @@ mix.styles([
|
|||
'./node_modules/bootstrap-datepicker/dist/css/bootstrap-datepicker.standalone.css',
|
||||
'public/css/bootstrap-tables-sticky-header.css',
|
||||
'build/css/overrides.css'
|
||||
], 'public/css/dist/all.css');
|
||||
|
||||
mix.js(
|
||||
], 'public/css/dist/all.css')
|
||||
.js(
|
||||
// jQuery is loaded from vue.js webpack process
|
||||
'./resources/assets/js/vue.js', //this is Snipe-IT's initializer for Vue.js
|
||||
'build'
|
||||
).sourceMaps();
|
||||
|
||||
mix.scripts([
|
||||
).sourceMaps().scripts([
|
||||
'./node_modules/jquery-ui/jquery-ui.js',
|
||||
'build/vue.js', //this is the modularized nifty Vue.js thing we just built, above!
|
||||
'./node_modules/tether/dist/js/tether.min.js',
|
||||
|
@ -48,10 +44,6 @@ mix.scripts([
|
|||
'./resources/assets/js/app.js', //this is part of AdminLTE
|
||||
'./resources/assets/js/snipeit.js', //this is the actual Snipe-IT JS
|
||||
'./resources/assets/js/snipeit_modals.js'
|
||||
],'public/js/dist/all.js');
|
||||
|
||||
//if (mix.config.inProduction) {
|
||||
//mix.version();
|
||||
//}
|
||||
],'public/js/dist/all.js').version();
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue