0

I Set up a project in expo Nativewind for both web and android platforms. But getting errors in the CSS file. But project is running in web.

Android Bundling failed 2084ms Unable to resolve "./styles.css" from "App.tsx"

styles.css

@tailwind components;
@tailwind utilities;

App.tsx-

import { StatusBar } from 'expo-status-bar';
import { Text, View } from 'react-native';

import './styles.css';
export default function App() {
  const variable: string = 'variable';
  return (
    <View className="flex-1 items-center justify-center bg-gray-600">
      <Text className="text-red-200">
        Open up App.js to start working on your app!
      </Text>
      <StatusBar style="auto" />
    </View>
  );
}
Supriya Gorai
  • 352
  • 3
  • 16

0 Answers0