builder manager: add correct loader type for images

This commit is contained in:
Yann Braga 2022-08-05 12:13:20 +02:00
parent c321fa0eac
commit 6689609a08

View File

@ -41,10 +41,13 @@ export const getConfig: ManagerBuilder['getConfig'] = async (options) => {
outExtension: { '.js': '.mjs' },
loader: {
'.js': 'jsx',
'.png': 'file',
'.jpg': 'file',
'.jpeg': 'file',
'.svg': 'file',
'.png': 'dataurl',
'.gif': 'dataurl',
'.jpg': 'dataurl',
'.jpeg': 'dataurl',
'.svg': 'dataurl',
'.webp': 'dataurl',
'.webm': 'dataurl',
},
target: ['chrome100'],
platform: 'browser',