We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa4dd08 commit ba8b320Copy full SHA for ba8b320
extensions/ql-vscode/gulpfile.ts/webpack.config.ts
@@ -57,13 +57,15 @@ export const config: webpack.Configuration = {
57
]
58
},
59
{
60
- test: /\.(woff(2)?|ttf|eot|svg)$/,
+ test: /\.(woff(2)?|ttf|eot)$/,
61
use: [
62
63
loader: 'file-loader',
64
options: {
65
name: '[name].[ext]',
66
outputPath: 'fonts/',
67
+ // We need this to make Webpack use the correct path for the fonts.
68
+ // Without this, the CSS file will use `url([object Module])`
69
esModule: false
70
}
71
0 commit comments