Results 5 comments of Nicolas

@weaverryan my config file: ```js var Encore = require('@symfony/webpack-encore'); Encore .setOutputPath('./build/') .setPublicPath('/themes/default/build') .cleanupOutputBeforeBuild() .addEntry('js/index', './src/js/index.js') .addStyleEntry('css/style', './src/scss/style.scss') .enableSassLoader() .autoProvidejQuery() .enableSourceMaps(!Encore.isProduction()) .enableVersioning(Encore.isProduction()) ; // export the final configuration module.exports = Encore.getWebpackConfig();...

I wish I could have something like that in my style.css file: ```css @font-face { font-family: 'FontAwesome'; src: url(../fonts/fontawesome-webfont.eot); src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2) format("woff2"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(./build/images/fontawesome-webfont.svg#fontawesomeregular) format("svg");...

@weaverryan Thanks for your solution. But it can't work for me. I don't know the extra path from my point of view. It's an extra path coming from urls. I...

Thanks @weaverryan. It's a bit of hack. But instead of something more decent... I try something too : https://github.com/symfony/webpack-encore/compare/master...nikrou:issue-88?expand=1 I can make that pull request and improve it if you...

@weaverryan Ok let's go for a PR. I will add tests to check publicPath. Done !