want to make a function to run automatically when serve start
Unanswered
Masai Lion posted this in #help-forum
Masai LionOP
I'm going to make bot. bot'll run with serve start. i'm working with next.js. i think that next.js is full stack. I don't hope other backend serve because the project is very simple. I want to work simply. how to make a function?
3 Replies
@Masai Lion I'm going to make bot. bot'll run with serve start. i'm working with next.js. i think that next.js is full stack. I don't hope other backend serve because the project is very simple. I want to work simply. how to make a function?
Here's what you have to do:
- use [instrumentation](https://nextjs.org/docs/app/building-your-application/optimizing/instrumentation)
- Run it from next.config.ts
Here is why you should not do that:
- If you are going to host nextjs on vercel, it is a serverless platform so your bot will be dead after atmost 60 seconds
- If you need updates in your server about stuff, use webhooks
- use [instrumentation](https://nextjs.org/docs/app/building-your-application/optimizing/instrumentation)
- Run it from next.config.ts
Here is why you should not do that:
- If you are going to host nextjs on vercel, it is a serverless platform so your bot will be dead after atmost 60 seconds
- If you need updates in your server about stuff, use webhooks
@Yi Lon Ma Here's what you have to do:
- use [instrumentation](https://nextjs.org/docs/app/building-your-application/optimizing/instrumentation)
- Run it from next.config.ts
Here is why you should not do that:
- If you are going to host nextjs on vercel, it is a serverless platform so your bot will be dead after atmost 60 seconds
- If you need updates in your server about stuff, use webhooks
Masai LionOP
I tried to run it from next.config.ts. but not. why? please...
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
webpack: (config, { isServer }) => {
if (isServer) {
const { startBot } = require("./src/procBot/processBot");
startBot(); // Runs bot logic when the server starts
}
return config;
},
};
export default nextConfig;
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
webpack: (config, { isServer }) => {
if (isServer) {
const { startBot } = require("./src/procBot/processBot");
startBot(); // Runs bot logic when the server starts
}
return config;
},
};
export default nextConfig;