mirror of
https://github.com/journey-ad/Bitmagnet-Next-Web
synced 2024-11-22 19:20:32 +00:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
|
const createNextIntlPlugin = require('next-intl/plugin');
|
||
|
|
||
|
const withNextIntl = createNextIntlPlugin('./i18n');
|
||
|
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {}
|
||
|
|
||
|
module.exports = withNextIntl(nextConfig);
|