18 lines
427 B
TypeScript
18 lines
427 B
TypeScript
import { appsInToss } from '@apps-in-toss/framework/plugins';
|
|
import { defineConfig } from '@granite-js/react-native/config';
|
|
|
|
export default defineConfig({
|
|
scheme: 'intoss',
|
|
appName: 'archetype-firstspark',
|
|
plugins: [
|
|
appsInToss({
|
|
brand: {
|
|
displayName: '아키타입: 첫 번째 불꽃',
|
|
primaryColor: '#FF6B35',
|
|
icon: './app-icon.png',
|
|
},
|
|
permissions: [],
|
|
}),
|
|
],
|
|
});
|