How can I use typeface-source-sans-pro in a webpack project that laverages sass-loader?
The current documentation is too sparse to make me understand what to do.
I did npm install --save typeface-source-sans-pro.
And then?
In my src/app.scss, I have added
@import 'typeface-source-sans-pro';
But then the webpack build fails with
Error: Can't resolve './files/source-sans-pro-300.woff2' in 'C:\Users\Abdull\git\webpack-demo\src'
How can I use
typeface-source-sans-proin a webpack project that laveragessass-loader?The current documentation is too sparse to make me understand what to do.
I did
npm install --save typeface-source-sans-pro.And then?
In my
src/app.scss, I have added@import 'typeface-source-sans-pro';But then the webpack build fails with
Error: Can't resolve './files/source-sans-pro-300.woff2' in 'C:\Users\Abdull\git\webpack-demo\src'