-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.mix.js
27 lines (21 loc) · 1.02 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
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.setPublicPath('public_html/');
mix.sass('resources/styles/index.scss', 'css').version();
mix.js('resources/scripts/index.js', 'js').version();
mix.copy('resources/fonts/GillSansNova-Bold.woff2', 'public_html/fonts/GillSansNova-Bold.woff2')
.copy('resources/fonts/GillSansNova-Medium.woff2', 'public_html/fonts/GillSansNova-Medium.woff2')
.version();
mix.copy('resources/images/favicon.ico', 'public_html/favicon.ico')
.copy('resources/images/favicon.svg', 'public_html/images/favicon.svg')
.copy('resources/images/favicon.png', 'public_html/images/favicon.png')
.version();