mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-24 11:59:02 -05:00
5ca00df6f7
run prettier
16 lines
470 B
JavaScript
16 lines
470 B
JavaScript
// Learn more https://docs.expo.io/guides/customizing-metro
|
|
const { getDefaultConfig } = require('@react-native/metro-config')
|
|
|
|
const config = getDefaultConfig(__dirname, {
|
|
// [Web-only]: Enables CSS support in Metro.
|
|
isCSSEnabled: true,
|
|
})
|
|
|
|
// Expo 49 issue: default metro config needs to include "mjs"
|
|
// https://github.com/expo/expo/issues/23180
|
|
config.resolver.sourceExts.push('mjs')
|
|
|
|
config.watchFolders = ['components', 'api', 'player']
|
|
|
|
module.exports = config
|