mirror of
https://github.com/Afilmory/afilmory
synced 2026-05-03 03:06:47 +00:00
- Introduced a Vite plugin to inject the photos manifest into the HTML, enabling dynamic updates and hot reloading. - Updated ESLint configuration to ignore build errors during SSR. - Modified package.json scripts for concurrent development of SSR and web applications. - Adjusted paths and imports for better module resolution and consistency across the codebase. - Added type definitions for the global __MANIFEST__ variable to ensure type safety. Signed-off-by: Innei <tukon479@gmail.com>
14 lines
237 B
JavaScript
14 lines
237 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|