16 lines
388 B
TypeScript
16 lines
388 B
TypeScript
import type { ExpoConfig } from "expo/config";
|
|
|
|
const config: ExpoConfig = {
|
|
name: "HAN Chat Test",
|
|
slug: "han-chat-test",
|
|
version: "1.0.0",
|
|
scheme: "han-chat",
|
|
orientation: "portrait",
|
|
userInterfaceStyle: "light",
|
|
experiments: { typedRoutes: true },
|
|
plugins: ["expo-router", "expo-secure-store"],
|
|
web: { bundler: "metro", output: "static" },
|
|
};
|
|
|
|
export default config;
|