cb8e729624
expo-router@4 imports @expo/metro-runtime as the very first thing in its entry-classic.js so Fast Refresh works; bundler errored without it. Also dropped expo-router/babel from babel.config.js — its functionality moved into babel-preset-expo in SDK 50.
7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
};
|
|
};
|