mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-01-06 13:50:58 -06:00
20 lines
487 B
JavaScript
20 lines
487 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;
|