Initial commit for Greenlens

This commit is contained in:
Timo Knuth
2026-03-16 21:31:46 +01:00
parent 307135671f
commit 05d4f6e78b
573 changed files with 54233 additions and 1891 deletions

13
metro.config.js Normal file
View File

@@ -0,0 +1,13 @@
const { getDefaultConfig } = require('expo/metro-config');
const path = require('path');
const config = getDefaultConfig(__dirname);
// Exclude server and landing page from the Metro bundle
config.resolver.blockList = [
/server\/.*/,
/greenlns-landing\/.*/,
/landing\/.*/,
];
module.exports = config;