27 lines
693 B
TypeScript
27 lines
693 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",
|
|
shortName: "HAN Chat",
|
|
name: "HAN Chat",
|
|
description: "Помощник по документам и жизни в России",
|
|
display: "standalone",
|
|
orientation: "portrait",
|
|
backgroundColor: "#ffffff",
|
|
themeColor: "#030213",
|
|
favicon: "./public/favicon.png",
|
|
},
|
|
};
|
|
|
|
export default config;
|