6ed3300183
Generated by create-expo-app 3.3.0.
9 lines
287 B
JavaScript
9 lines
287 B
JavaScript
const { getDefaultConfig } = require("expo/metro-config");
|
|
const { withNativeWind } = require("nativewind/metro");
|
|
|
|
const config = getDefaultConfig(__dirname);
|
|
|
|
config.resolver.sourceExts.push("sql"); // <--- add this
|
|
|
|
module.exports = withNativeWind(config, { input: "./global.css" });
|