Add output:export to Next.js config and remove next export

This commit is contained in:
Kedasha 2023-11-14 17:15:36 -06:00
Родитель 88938b57e8
Коммит d3c9e7d60e
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
}

Просмотреть файл

@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production next build && next export",
"build": "NODE_ENV=production next build",
"start": "next start",
"lint": "next lint",
"test": "jest"