mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
* feat: support next app dir * fix: error when run next build * fix: incress limit page size * feat: add chinese translation * feat: support i18n without path change * chore: move back pages, give up appdir * fix: upgrade NextRequest type broken * fix: auth & admin page error * fix: create next server with hostname and port * test: migrate e2e test case
13 lines
329 B
JavaScript
13 lines
329 B
JavaScript
module.exports = function (api) {
|
|
// const isTest = api.env('test');
|
|
// const isDevelopment = api.env('development');
|
|
// const isServer = api.caller((caller) => caller?.isServer);
|
|
// const isCallerDevelopment = api.caller((caller) => caller?.isDev);
|
|
|
|
api.cache(true);
|
|
|
|
return {
|
|
presets: [['next/babel']],
|
|
};
|
|
};
|