diff --git a/next.config.ts b/next.config.ts index a62b08a..fd7c7e3 100644 --- a/next.config.ts +++ b/next.config.ts @@ -5,6 +5,10 @@ import './src/libs/Env'; // Define the base Next.js configuration const baseConfig: NextConfig = { + output: 'export', + images: { + unoptimized: true, + }, devIndicators: { position: 'bottom-right', }, diff --git a/package.json b/package.json index 1396979..5f46804 100644 --- a/package.json +++ b/package.json @@ -2,13 +2,12 @@ "scripts": { "check:types": "tsc --noEmit --pretty", "check:deps": "knip", - "check:i18n": "i18n-check -l src/locales -s en -u src -f next-intl", "dev": "next", "build": "next build", "start": "next start", "lint": "eslint .", "lint:fix": "eslint . --fix", - "postbuild": "pagefind --site .next/server/app --output-path public/_pagefind" + "postbuild": "pagefind --site .next/server/app --output-path out/_pagefind" }, "dependencies": { "@commitlint/cli": "^20.3.0",