[MM-19856] Add back button when navigating outside of MM server (#1179)

This commit is contained in:
Guillermo Vayá
2020-03-19 21:51:26 +01:00
committed by GitHub
parent 176fd19aa2
commit cfd65d62c6
18 changed files with 170 additions and 7 deletions

View File

@@ -42,7 +42,7 @@ module.exports = merge(base, {
loader: 'url-loader',
},
}, {
test: /\.(svg|woff2)$/,
test: /\.(svg)$/,
use: [
{
loader: 'file-loader',
@@ -53,6 +53,14 @@ module.exports = merge(base, {
},
{loader: 'image-webpack-loader'},
],
}, {
test: /\.(eot|ttf|woff|woff2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: '/../assets/fonts',
publicPath: './assets/fonts',
},
}],
},
node: {