mirror of
https://github.com/zhigang1992/react-native-jsonschema-form.git
synced 2026-06-17 01:50:02 +08:00
18 lines
291 B
JavaScript
18 lines
291 B
JavaScript
/**
|
|
* User: Niko
|
|
* Date: 08.07.2020
|
|
* Time: 09:15
|
|
*/
|
|
const images = require('@rollup/plugin-image');
|
|
|
|
module.exports = {
|
|
rollup(config, options) {
|
|
config.plugins = [
|
|
images({ include: [ '**/*.png', '**/*.jpg' ] }),
|
|
...config.plugins,
|
|
];
|
|
|
|
return config;
|
|
},
|
|
};
|