feat(deps): update vite version to 5.x (#3508)

This commit is contained in:
xingyu
2024-01-06 09:19:52 +08:00
committed by GitHub
parent d709dd67b5
commit e6c7b5f928
22 changed files with 467 additions and 744 deletions

View File

@@ -0,0 +1,18 @@
const { name } = require('./package.json');
const path = require('path');
module.exports = {
apps: [
{
name,
script: path.resolve(__dirname, './dist/index.js'),
instances: require('os').cpus().length,
autorestart: true,
watch: true,
env_production: {
NODE_ENV: 'production',
PORT: 8080,
},
},
],
};