@wiris/mathtype-tinymce6 8.9.0 → 8.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/webpack.config.js CHANGED
@@ -63,19 +63,12 @@ module.exports = (config, context) => {
63
63
  },
64
64
  {
65
65
  test: /\.(png|jpg|gif)$/i,
66
- use: [
67
- {
68
- loader: 'url-loader',
69
- options: {
70
- limit: 8192
71
- }
72
- }
73
- ]
66
+ type: 'asset/inline',
74
67
  },
75
68
  {
76
69
  // For the modal close, minimize, maximize icons
77
70
  test: /\.svg$/,
78
- use: [ 'raw-loader' ]
71
+ type: 'asset/source',
79
72
  },
80
73
  ]
81
74
  },