We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a11cc commit 857b969Copy full SHA for 857b969
app/templates/_webpack.config.js
@@ -21,12 +21,27 @@ module.exports = {
21
exclude: /node_modules|dist/,
22
loader: 'babel'
23
},
24
+ {
25
+ test: /\.json$/,
26
+ loader: 'json'
27
+ },
28
29
+ test: /\.html$/,
30
+ loader: 'vue-html'
31
32
{
33
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
34
loader: 'url',
35
query: {
36
limit: 10000
37
}
38
39
40
+ test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
41
+ loader: 'url',
42
+ query: {
43
+ limit: 10000
44
+ }
45
46
]
47
0 commit comments