config.prod.ts 157 B

123456789
  1. import { type AppConfig } from 'ee-core/config';
  2. const config: () => AppConfig = () => {
  3. return {
  4. openDevTools: false,
  5. };
  6. };
  7. export default config;