WORKKKKKKKS ; Page loading works really well now. If anything goes wrong revert to this commit

This commit is contained in:
2025-06-18 16:39:43 +02:00
parent 7d4e5b226f
commit dd10624ce4
7 changed files with 65 additions and 17 deletions

14
pm2.config.js Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: "markdownblog-dev",
script: "npm",
args: "run dev",
watch: true,
env: {
NODE_ENV: "development",
PORT: 8080
}
}
]
};