-
Notifications
You must be signed in to change notification settings - Fork 62
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
Apache automatically build! #138
Comments
You shouldn't configure apache to achieve this effect. When you build your application (i.e. on local machine) to be send to a production server, you should follow instructions from here: Then apache will use application, configured for production usage. |
@widmogrod Thanks , Yeah man ! |
Do you have sass preprocessor installed? Basically if use sass filters in collection i.e.: 'filters' => array(
'?SassFilter' => array(
'name' => 'Assetic\Filter\Sass\SassFilter'
),
), Then this filter: Has constructor:
Witch, use sass parser from path You can change the path, updating 'filters' => array(
'?SassFilter' => array(
'name' => 'Assetic\Filter\Sass\SassFilter',
'option' => ['/my/path/to/bin/sass'], // this is new thing
),
), |
how I can configure my apache that can build sass file without manual build?
The text was updated successfully, but these errors were encountered: