Files
Emil_Shanayev_Resume/next.config.mjs
T
EmilandClaude Sonnet 5 32c57a5ada
Deploy to GitHub Pages / build (push) Canceled after 0s
Deploy to GitHub Pages / deploy (push) Canceled after 0s
Resume site with live content from Gitea
Replaces the static portfolio with a resume site that reads /data/resume.json:
the text comes from data/resume.json in this repo, and the projects are the
public Gitea repos tagged `resume`. Merges in the content of the hh.ru resume
(backend/DevOps skills, experience, languages) without personal details.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-20 20:55:05 +03:00

12 lines
371 B
JavaScript

// BASE_PATH overrides the GitHub Pages default, e.g. BASE_PATH=/resume for https://shanaty.ru/resume/.
const basePath = process.env.BASE_PATH ?? '/Emil_Shanayev_Resume'
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
...(basePath && { basePath, assetPrefix: basePath }),
images: { unoptimized: true },
}
export default nextConfig