mirror of
https://github.com/uetchy/namae.git
synced 2025-03-17 04:30:31 +09:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
const { i18n } = require('./next-i18next.config');
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: false,
|
|
concurrentFeatures: true,
|
|
images: {
|
|
domains: [],
|
|
},
|
|
i18n,
|
|
};
|