mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +00:00
33 lines
No EOL
872 B
JavaScript
33 lines
No EOL
872 B
JavaScript
const {
|
|
getSentryExpoConfig
|
|
} = require("@sentry/react-native/metro");
|
|
|
|
const config = getSentryExpoConfig(__dirname);
|
|
|
|
// Enable tree shaking and better minification
|
|
config.transformer = {
|
|
...config.transformer,
|
|
babelTransformerPath: require.resolve('react-native-svg-transformer'),
|
|
minifierConfig: {
|
|
ecma: 8,
|
|
keep_fnames: true,
|
|
mangle: {
|
|
keep_fnames: true,
|
|
},
|
|
compress: {
|
|
drop_console: true,
|
|
drop_debugger: true,
|
|
pure_funcs: ['console.log', 'console.info', 'console.debug'],
|
|
},
|
|
},
|
|
};
|
|
|
|
// Optimize resolver for better tree shaking and SVG support
|
|
config.resolver = {
|
|
...config.resolver,
|
|
assetExts: [...config.resolver.assetExts.filter((ext) => ext !== 'svg'), 'zip'],
|
|
sourceExts: [...config.resolver.sourceExts, 'svg'],
|
|
resolverMainFields: ['react-native', 'browser', 'main'],
|
|
};
|
|
|
|
module.exports = config; |