forked from alaatv/vote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.mix.js
27 lines (21 loc) · 1.14 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.
|
*/
// <!-- reference your copy Font Awesome here (from our CDN or by hosting yourself) -->
// <link href="/your-path-to-fontawesome/css/fontawesome.css" rel="stylesheet">
// <link href="/your-path-to-fontawesome/css/brands.css" rel="stylesheet">
// <link href="/your-path-to-fontawesome/css/solid.css" rel="stylesheet">
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.sourceMaps();
// mix.styles(['node_modules/@fortawesome/fontawesome-free/css/all.css'], 'public/css/fontawesome.css').version();
// mix.sass('resources/sass/font-awesome.scss', 'public/css/fontawesome.css').version();
mix.sass('resources/sass/font-awesome.scss', 'public/css/fontawesome.css');