* fix: typescript check error * fix: typescript check error * fix: typescript check error * fix: typescript check error * fix: typescript check error
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
const createNextIntlPlugin = require('next-intl/plugin');
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
|
|
module.exports = withNextIntl(nextConfig);
|