import { isEnabled } from '~~/locale/config.ts'; import type { Config, ConfigModule } from '~~/locale/config.ts'; export default (config: Config, module: M) => { if (!isEnabled(config, module)) { throw createError({ status: 404, statusMessage: 'Not Found', }); } };