10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
basePath: '/Emil_Shanayev_Resume',
|
|
assetPrefix: '/Emil_Shanayev_Resume',
|
|
images: { unoptimized: true },
|
|
}
|
|
|
|
export default nextConfig
|