23 lines
545 B
TypeScript
23 lines
545 B
TypeScript
import { appsInToss } from '@apps-in-toss/framework/plugins';
|
|
import { defineConfig } from '@granite-js/react-native/config';
|
|
|
|
export default defineConfig({
|
|
appName: 'my-app',
|
|
scheme: 'intoss',
|
|
plugins: [
|
|
appsInToss({
|
|
target: '0.84.0',
|
|
brand: {
|
|
displayName: '내 앱 이름',
|
|
primaryColor: '#0064FF',
|
|
icon: 'https://static.toss.im/appsintoss/your-icon.png',
|
|
},
|
|
navigationBar: {
|
|
withBackButton: true,
|
|
withHomeButton: true,
|
|
},
|
|
permissions: [],
|
|
}),
|
|
],
|
|
});
|