Marcin Charmułowicz
Marcin Charmułowicz
I have found this post while looking for the anwer for the same question ;) So now two of us are waiting for the solution ;) Here's fiddle for some...
Temporary working (but with warning from Encore about public path) solution: ```javascript Encore .setOutputPath('web/build/') .setPublicPath('.') .setManifestKeyPrefix('.') .configureManifestPlugin((options) => { options.publicPath = './build/'; }) // ... ``` Doesn't work with `.enableVersioning()`
Reffering to https://github.com/symfony/webpack-encore/issues/88#issuecomment-327773492 we have the same case - multiple Symfony instances under sub-directories e.g: ``` http://example.org/site-1/web/app.php http://example.org/site-2/web/app.php ``` Our current Encore config looks like this: ```javascript Encore .setOutputPath('web/assets/') .setPublicPath('/assets')...
I am not sure if this is a bug. This works fine, as long as the application is not running in a subdirectory. In this case, since the `styles.css` and...
After hours of trial and error I have found working (but not very best I suppose) solution. But maybe someone could come up with their own solution based on that....
I can confirm this error in Symfony 2.6 too. Fast workaround: 1) create class extending `Lrotherfield\Component\Form\Type\HiddenEntityType` and add inside ``` php public function getParent() { return 'hidden'; } ``` 2)...
@gelus Yeap, I can confirm this - I suppose there is some debug option enabled which should not be. And even worse - you can upgrade zone by Improvement Token...