mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 00:32:44 +03:00
20 lines
524 B
TypeScript
20 lines
524 B
TypeScript
export default function getConfig() {
|
|
return {
|
|
publicRuntimeConfig: {
|
|
PROJECT_NAME: 'AFFiNE Mock',
|
|
BUILD_DATE: '2021-09-01T00:00:00.000Z',
|
|
gitVersion: 'UNKNOWN',
|
|
hash: 'UNKNOWN',
|
|
editorVersion: 'UNKNOWN',
|
|
serverAPI: 'http://localhost:3000/',
|
|
enableBroadCastChannelProvider: true,
|
|
enableIndexedDBProvider: true,
|
|
enableDebugPage: true,
|
|
prefetchWorkspace: false,
|
|
exposeInternal: true,
|
|
enableSubpage: true,
|
|
enableChangeLog: true,
|
|
},
|
|
};
|
|
}
|