feat: bootstrap lunch picker miniapp with backend, docs, and branding assets

This commit is contained in:
mingking2
2026-04-15 14:03:08 +09:00
commit 7faf251fd3
85 changed files with 31332 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
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: [],
}),
],
});