-
Nothing to see here!
+
The Page you are trying to access does not exist.
- Go to the home page 3
+ Go back home...
);
diff --git a/server-node/src/index.ts b/server-node/src/index.ts
index 0e1a85c85..11b584791 100644
--- a/server-node/src/index.ts
+++ b/server-node/src/index.ts
@@ -1,4 +1,5 @@
-import "@stirling-pdf/shared-operations/src/i18next.config";
+import { init } from "@stirling-pdf/shared-operations/src/i18next.config";
+init("./public/locales/");
import express from "express";
const app = express();
diff --git a/shared-operations/src/workflow/getOperatorByName.ts b/shared-operations/src/workflow/getOperatorByName.ts
index 30fa9f3f5..b3890c2a1 100644
--- a/shared-operations/src/workflow/getOperatorByName.ts
+++ b/shared-operations/src/workflow/getOperatorByName.ts
@@ -27,5 +27,5 @@ export function getOperatorByName(name: string): typeof Operator | undefined {
export function listOperatorNames(): string[] {
// TODO: Implement this
- return [];
+ return ["impose"];
}
diff --git a/shared-operations/tsconfig.json b/shared-operations/tsconfig.json
index 5ea10b16c..ec0eab812 100644
--- a/shared-operations/tsconfig.json
+++ b/shared-operations/tsconfig.json
@@ -1,6 +1,7 @@
{
"compilerOptions": {
- "module": "Node16",
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
"esModuleInterop": true,
"baseUrl": "./src", /* Specify the base directory to resolve non-relative module names. */
"paths": {