diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..a79cb57 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,10 @@ +module.exports = { + apps: [ + { + name: 'on-site-survey', + script: 'node_modules/next/dist/bin/next', + instances: 2, + exec_mode: 'cluster', + }, + ], +} diff --git a/next.config.ts b/next.config.ts index e9ffa30..7329063 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ -import type { NextConfig } from "next"; +import type { NextConfig } from 'next' const nextConfig: NextConfig = { /* config options here */ -}; +} -export default nextConfig; +export default nextConfig