import { defineConfig } from "@apps-in-toss/web-framework/config";
export default defineConfig({
appName: 'xxxxx',
brand: {
displayName: '앱이름',
primaryColor: '#3182F6',
icon: 'https://static.toss.im/xxxx.png',
bridgeColorMode: 'basic',
},
permissions: [
{
name: "camera",
access: "access",
},
{
name: "photos",
access: "read",
},
],
navigationBar: {
withBackButton: true,
withHomeButton: true,
initialAccessoryButton: {
id: 'close',
title: 'Close',
icon: {
name: 'https://static.toss.im/xxxxx.png',
},
}
},
web: {
host: '192.168.45.224',
port: 5173,
commands: {
dev: 'vite --host --mode production',
build: 'vite build',
}
},
webViewProps: {
type: 'external',
},
});
이렇게 하고 빌드후 QA로 토스앱에서 실행해도 네비게이션바에는 아이콘과 앱이름이 나오지 않습니다.
@Dylan 확인 부탁드립니다.
이렇게 표시됩니다. 어떤게 잘 못되었을까요?
