-
Notifications
You must be signed in to change notification settings - Fork 812
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mix.sass does not allow glob params #241
Comments
Right - you need to be specific with your Sass entry point. Generally, you'll have a single app.scss entry, and that file will import any other .scss files/partials it needs. |
Hi thanks for the reply. Say i got multiple scss files like 20+ for individual pages, does that means i have to declare mix.sass for every single one of scss files? |
@paper9oll No, you would have a main.scss
Then, in your |
Is there a way in that -- Update (2018-09-13) : managed this by adding import-glob-loader to
|
It would be great if we could do this. |
webpack.mix.js
Let's say I have 2 files:
when I run the
npm run dev
it compile thescss
intocss
and "copies" them topublic
directory:The text was updated successfully, but these errors were encountered: