Rewrote the compiler to better dump assets.

This commit is contained in:
2018-07-10 17:36:50 +10:00
parent 3c11554770
commit 17e10572ea

View File

@ -79,7 +79,13 @@ module.exports = function(server, app) {
{
test: /\.jpe?g$|\.gif$|\.png$|\.svg|\.webm|\.mp4$/i,
loader: "file-loader?name=[path][name].[ext]"
use: [{
loader: "file-loader",
options: {
name: "[path][name].[ext]",
context: 'public'
}
}]
},
{