nextsj
Version:
NextSJ: the legendary JavaScript framework that tries really hard to be Next.js, but succeeds in chaos, laughter, and occasional brilliance.
20 lines (16 loc) • 384 B
JavaScript
function build() {
console.log('Building your nextsj app… nothing actually happens.');
}
function exportApp() {
console.log('Exporting static files… all imaginary!');
}
function getStaticProps() {
console.log('getStaticProps called… returns nothing useful.');
return {};
}
module.exports = {
build,
exportApp,
getStaticProps
};
;