-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
43 lines (41 loc) · 1.01 KB
/
next.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/** @type {import('next').NextConfig} */
import { withExpo } from "@expo/next-adapter";
const nextConfig = {
reactStrictMode: true,
transpilePackages: [
"@rn-primitives/checkbox",
"@rn-primitives/dropdown-menu",
"@rn-primitives/hooks",
"@rn-primitives/label",
"@rn-primitives/portal",
"@rn-primitives/popover",
"@rn-primitives/select",
"@rn-primitives/separator",
"@rn-primitives/slot",
"@rn-primitives/switch",
"expo-apple-authentication",
"expo-av",
"expo-constants",
"expo-crypto",
"expo-haptics",
"expo-image-picker",
"expo-linking",
"expo-modules-core",
"expo-navigation-bar",
"expo-web-browser",
"lucide-react-native",
"nativewind",
"react-native",
"react-native-css-interop",
"react-native-mmkv",
"react-native-reanimated",
"react-native-svg",
"react-native-web",
"solito",
],
experimental: {
forceSwcTransforms: true,
scrollRestoration: true,
},
};
export default withExpo(nextConfig);