Try to fix the issue where laravel mix is stucked in a loop
This commit is contained in:
parent
80538fdac9
commit
9720e53cee
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'icomoon';
|
font-family: 'icomoon';
|
||||||
src: url('../fonts/icomoon/icomoon.eot?jcg9f9');
|
src: url('../fonts/icomoon.eot?jcg9f9');
|
||||||
src: url('../fonts/icomoon/icomoon.eot?jcg9f9#iefix') format('embedded-opentype'),
|
src: url('../fonts/icomoon.eot?jcg9f9#iefix') format('embedded-opentype'),
|
||||||
url('../fonts/icomoon/icomoon.ttf?jcg9f9') format('truetype'),
|
url('../fonts/icomoon.ttf?jcg9f9') format('truetype'),
|
||||||
url('../fonts/icomoon/icomoon.woff?jcg9f9') format('woff'),
|
url('../fonts/icomoon.woff?jcg9f9') format('woff'),
|
||||||
url('../fonts/icomoon/icomoon.svg?jcg9f9#icomoon') format('svg');
|
url('../fonts/icomoon.svg?jcg9f9#icomoon') format('svg');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
|
|
@ -22,8 +22,11 @@ mix.js('js/helpers.js', 'js/')
|
||||||
.js('js/post.js', 'js/')
|
.js('js/post.js', 'js/')
|
||||||
.js('js/page.js', 'js/')
|
.js('js/page.js', 'js/')
|
||||||
.extract()
|
.extract()
|
||||||
.sass('sass/app.scss', 'css/')
|
|
||||||
.setPublicPath('../assets')
|
.setPublicPath('../assets')
|
||||||
|
.sass('sass/app.scss', 'css/')
|
||||||
|
.options({
|
||||||
|
processCssUrls: false
|
||||||
|
})
|
||||||
.setResourceRoot('/assets')
|
.setResourceRoot('/assets')
|
||||||
.browserSync({
|
.browserSync({
|
||||||
proxy: "localhost:2368",
|
proxy: "localhost:2368",
|
||||||
|
|
Loading…
Reference in a new issue