28 lines
610 B
TypeScript
28 lines
610 B
TypeScript
import { appsInToss } from '@apps-in-toss/framework/plugins';
|
|
import { defineConfig } from '@granite-js/react-native/config';
|
|
|
|
export default defineConfig({
|
|
appName: 'lunch-picker',
|
|
scheme: 'intoss',
|
|
metro: {
|
|
resolver: {
|
|
useWatchman: true,
|
|
},
|
|
},
|
|
plugins: [
|
|
appsInToss({
|
|
target: '0.84.0',
|
|
brand: {
|
|
displayName: '점심픽',
|
|
primaryColor: '#0EA5E9',
|
|
icon: 'https://static.toss.im/appsintoss/your-icon.png',
|
|
},
|
|
navigationBar: {
|
|
withBackButton: true,
|
|
withHomeButton: true,
|
|
},
|
|
permissions: [],
|
|
}),
|
|
],
|
|
});
|