mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
fix: V4 fixes.
This commit is contained in:
parent
f711fa9fad
commit
088e210620
@ -14,6 +14,7 @@
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
// TODO: strip auth prop from page before we send it to the client
|
||||
async function getPageConfig({ authorize, readConfigFile }, { pageId }) {
|
||||
const pageConfig = await readConfigFile(`pages/${pageId}/${pageId}.json`);
|
||||
if (pageConfig && authorize(pageConfig)) return pageConfig;
|
||||
|
@ -49,7 +49,7 @@ program
|
||||
)
|
||||
.option(
|
||||
'--package-manager <package-manager>',
|
||||
'The package manager to user. Options are "npm" or "yarn".'
|
||||
'The package manager to use. Options are "npm" or "yarn".'
|
||||
)
|
||||
.option(
|
||||
'--ref-resolver <ref-resolver-function-path>',
|
||||
|
@ -47,7 +47,6 @@ async function spawnProcess({ context, command, args, processOptions, silent })
|
||||
});
|
||||
|
||||
process.on('error', (error) => {
|
||||
console.log(error);
|
||||
reject(error);
|
||||
});
|
||||
|
||||
|
@ -20,7 +20,8 @@ import Page from '../components/Page.js';
|
||||
|
||||
export async function getServerSideProps(context) {
|
||||
const { pageId } = context.params;
|
||||
const apiContext = await createApiContext({ buildDirectory: './.lowdefy/build' });
|
||||
// TODO: get the write api context options
|
||||
const apiContext = await createApiContext({ buildDirectory: './build' });
|
||||
|
||||
// TODO: Maybe we can only get rootConfig once?
|
||||
// We can't do getServerSideProps on _app :(
|
||||
|
Loading…
x
Reference in New Issue
Block a user