mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-27 13:38:40 -06:00
22 lines
406 B
JavaScript
22 lines
406 B
JavaScript
const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
|
|
|
|
/**
|
|
* Metro configuration
|
|
* https://reactnative.dev/docs/metro
|
|
*
|
|
* @type {import('metro-config').MetroConfig}
|
|
*/
|
|
const config = getDefaultConfig(__dirname, {
|
|
isCSSEnabled: true
|
|
});
|
|
|
|
config.resolver.sourceExts.push('mjs');
|
|
|
|
config.watchFolders = [
|
|
"components",
|
|
"api",
|
|
"player"
|
|
]
|
|
|
|
module.exports = config;
|