- Created a new PostCSS configuration file to integrate Tailwind CSS. - Added a skills lock file containing various Expo skills with their respective source and computed hashes.
12 lines
435 B
JavaScript
12 lines
435 B
JavaScript
// Learn more https://docs.expo.io/guides/customizing-metro
|
|
const { getDefaultConfig } = require('expo/metro-config');
|
|
const { withNativewind } = require('nativewind/metro');
|
|
|
|
/** @type {import('expo/metro-config').MetroConfig} */
|
|
const config = getDefaultConfig(__dirname);
|
|
|
|
module.exports = withNativewind(config, {
|
|
// Keep CSS variables dynamic so PlatformColor and light-dark tokens work correctly.
|
|
inlineVariables: false,
|
|
});
|