mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
Fix deploy
This commit is contained in:
parent
bd6c978d79
commit
26a6002ce8
2 changed files with 18 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ module.exports = {
|
|||
apps: [
|
||||
{
|
||||
name: "skin-database-blue",
|
||||
script: "pnpm",
|
||||
script: "yarn",
|
||||
interpreter: "bash",
|
||||
args: "start",
|
||||
env: {
|
||||
|
|
@ -16,7 +16,7 @@ module.exports = {
|
|||
},
|
||||
{
|
||||
name: "skin-database-green",
|
||||
script: "pnpm",
|
||||
script: "yarn",
|
||||
interpreter: "bash",
|
||||
args: "start",
|
||||
env: {
|
||||
|
|
@ -24,5 +24,14 @@ module.exports = {
|
|||
PORT: 3002,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "skin-bot",
|
||||
script: "yarn",
|
||||
interpreter: "bash",
|
||||
args: "bot",
|
||||
env: {
|
||||
NODE_ENV: "production",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
typescript: {
|
||||
// !! WARN !!
|
||||
// Dangerously allow production builds to successfully complete even if
|
||||
// your project has type errors.
|
||||
// !! WARN !!
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
serverExternalPackages: ["knex", "imagemin-optipng", "discord.js"],
|
||||
experimental: {
|
||||
viewTransition: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue