chore: Update next.config.ts for consistent import syntax

This commit is contained in:
yoosangwook 2025-04-21 16:49:27 +09:00
parent 1d823ea097
commit 96cebc25a9
2 changed files with 13 additions and 3 deletions

10
ecosystem.config.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = {
apps: [
{
name: 'on-site-survey',
script: 'node_modules/next/dist/bin/next',
instances: 2,
exec_mode: 'cluster',
},
],
}

View File

@ -1,7 +1,7 @@
import type { NextConfig } from "next"; import type { NextConfig } from 'next'
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ /* config options here */
}; }
export default nextConfig; export default nextConfig