Task management app with Expo/React Native: - 3 tabs: Inbox, Lists, Settings - Task CRUD with subtasks, priorities, due dates - SQLite database via Drizzle ORM - i18n FR/EN (French default) - Dark mode support (light/dark/system) - Simpl- brand color palette (bleu/crème/terracotta) - NativeWind (Tailwind) styling - EAS Build config for Android (APK + AAB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
318 B
JavaScript
9 lines
318 B
JavaScript
const { getDefaultConfig } = require("expo/metro-config");
|
|
const { withNativeWind } = require("nativewind/metro");
|
|
|
|
const config = getDefaultConfig(__dirname);
|
|
|
|
// Add SQL extension for Drizzle migrations
|
|
config.resolver.sourceExts.push("sql");
|
|
|
|
module.exports = withNativeWind(config, { input: "./src/global.css" });
|