-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.mix.js
50 lines (46 loc) · 2.06 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
const { mix } = require('laravel-mix')
const path = require('path')
mix.browserSync('localhost:8000')
/*
|--------------------------------------------------------------------------
| 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('semantic/dist/semantic.css', 'resources/assets/sass/semantic.css')
.copy('semantic/dist/semantic.js', 'resources/assets/js/semantic.js')
.copy('resources/assets/js/modules/edit_record.js', 'public/js/modules')
.js('resources/assets/js/app.js', 'public/js').extract([
'jquery',
'lodash',
'axios',
'./resources/assets/js/semantic.js'
]).sass('resources/assets/sass/app.scss', 'public/css')
// Full API
// mix.js(src, output);
// mix.react(src, output); <-- Identical to mix.js(), but registers React Babel compilation.
// mix.extract(vendorLibs);
// mix.sass(src, output);
// mix.less(src, output);
// mix.stylus(src, output);
// mix.browserSync('my-site.dev');
// mix.combine(files, destination);
// mix.babel(files, destination); <-- Identical to mix.combine(), but also includes Babel compilation.
// mix.copy(from, to);
// mix.minify(file);
// mix.sourceMaps(); // Enable sourcemaps
// mix.version(); // Enable versioning.
// mix.disableNotifications();
// mix.setPublicPath('path/to/public');
// mix.setResourceRoot('prefix/for/resource/locators');
// mix.autoload({}); <-- Will be passed to Webpack's ProvidePlugin.
// mix.webpackConfig({}); <-- Override webpack.config.js, without editing the file directly.
// mix.then(function () {}) <-- Will be triggered each time Webpack finishes building.
// mix.options({
// extractVueStyles: false, // Extract .vue component styling to file, rather than inline.
// processCssUrls: true // Process/optimize relative stylesheet url()'s. Set to false, if you don't want them touched.
// });