Fix for last PR (#21)

* add module type to package.json

* revert to commonjs format

* remove index.mjs

* remove unneeded import
This commit is contained in:
Abhay 2023-02-23 20:58:23 +00:00 committed by GitHub
parent 61930389a0
commit 8d007514a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View File

@ -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');

View File

@ -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"