backend for queues & minor front tweaks

This commit is contained in:
2024-04-11 16:39:08 +03:00
parent 8b8124d58d
commit 57965fc147
21 changed files with 210 additions and 35 deletions

View File

@ -1,10 +1,15 @@
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { defineConfig } from "@rsbuild/core";
import { pluginReact } from "@rsbuild/plugin-react";
export default defineConfig({
plugins: [pluginReact()],
server: {
host: '0.0.0.0',
host: "0.0.0.0",
port: 3000,
},
html: {
favicon: "./static/logo-square.png",
title: "queueful!",
template: "./static/index.html",
},
});