9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import { type AppConfig } from 'ee-core/config';
|
|
|
|
const config: () => AppConfig = () => {
|
|
return {
|
|
openDevTools: false,
|
|
};
|
|
};
|
|
|
|
export default config; |