@fleek-platform/next-on-fleek
Version:
`@fleek-platform/next-on-fleek` is a CLI tool that you can use to build and develop [Next.js](https://nextjs.org/) applications so that they can run on [Fleek Functions](https://fleek.xyz/docs/platform/fleek-functions/).
12 lines (11 loc) • 445 B
JavaScript
;
(() => {
// src/fetch-handler/index.ts
var fetch_handler_default = {
async fetch() {
throw new Error(
"Invalid invocation of the next-on-pages fetch handler - this method should only be used alongside the --custom-entrypoint CLI option. For more details, see: https://github.com/fleek-platform/next-on-fleek/blob/main/packages/next-on-fleek/docs/advanced-usage.md#custom-entrypoint"
);
}
};
})();