diff --git a/index.mjs b/index.js similarity index 84% rename from index.mjs rename to index.js index 493cee4..b38166b 100644 --- a/index.mjs +++ b/index.js @@ -1,11 +1,10 @@ -import express from "express"; +const express = require("express"); const app = express(); -import { join, dirname } from "path"; -const __dirname = dirname(new URL(import.meta.url).pathname); +const { join } = require("path"); -import compression from "compression"; -import expressEJSLayouts from "express-ejs-layouts"; +const compression = require("compression"); +const expressEJSLayouts = require("express-ejs-layouts"); app.disable('x-powered-by'); diff --git a/package.json b/package.json index aa82cb1..c12bb48 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,10 @@ "name": "hyprland-website", "version": "1.1.0", "description": "Website for Hyprland - Hyprland - A wayland compositor that doesn't sacrifice on its looks!", - "main": "index.mjs", + "main": "index.js", "scripts": { - "start": "NODE_ENV=production node index.mjs", - "dev": "nodemon index.mjs" + "start": "NODE_ENV=production node index.js", + "dev": "nodemon index.js" }, "keywords": [ "hyprland"