14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
assetPrefix: "./",
|
|
i18n: {
|
|
locales: ['hu'],
|
|
defaultLocale: 'hu',
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|