Fix workers

This commit is contained in:
Mark 2025-01-16 15:47:35 -08:00
parent 65ddbdb22f
commit 16c08e380b
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
13 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# docker build . -t git.betalupi.com/mark/esolang:version
# docker push git.betalupi.com/mark/esolang:version
FROM node:21-alpine AS base
#

View File

@ -2,7 +2,7 @@ import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import LangProvider from "../../languages/brainfuck";
import LangProvider from "../../languages/bf";
const LANG_ID = "bf";
const LANG_NAME = "Turing";