diff --git a/myfavstuff/next.config.js b/myfavstuff/next.config.js new file mode 100644 index 0000000..4a0112d --- /dev/null +++ b/myfavstuff/next.config.js @@ -0,0 +1,20 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + // Enable output.standalone to create a standalone build + // This is recommended for deployments to containerized environments + output: 'export', + + // Set to true for improved page load performance + swcMinify: true, + + // Configure images if using them from external domains + images: { + unoptimized: true, // For static export + domains: [], + }, + + // Add any other configurations needed + reactStrictMode: true, +}; + +module.exports = nextConfig; diff --git a/myfavstuff/package.json b/myfavstuff/package.json index b6c7b76..8a2b33c 100644 --- a/myfavstuff/package.json +++ b/myfavstuff/package.json @@ -18,7 +18,8 @@ }, "devDependencies": { "@eslint/eslintrc": "^3", - "eslint": "^9", - "eslint-config-next": "15.3.2" + "eslint": "^9.0.0", + "eslint-config-next": "15.3.2", + "eslint-plugin-react": "^7.33.2" } }