Created
September 2, 2020 04:59
-
-
Save theCoderCat/68d889e6c1ffcba2e4ef3d44627bdf7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mix = require('laravel-mix'); | |
require('laravel-mix-copy-watched'); | |
mix.js('resources/js/app.js', 'public/js') | |
mix.js('resources/js/auth.js', 'public/js') | |
.sass('resources/sass/app.scss', 'public/css') | |
.copyDirectoryWatched('resources/images', 'public/images') | |
.copyDirectoryWatched('resources/fonts', 'public/fonts') | |
.options({ | |
processCssUrls: false | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment