mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 22:37:32 +00:00
Catching up to external updates and checking in array fix (this time without build artifacts).
11 lines
339 B
JavaScript
11 lines
339 B
JavaScript
const express = require('express')
|
|
const app = express()
|
|
|
|
app.use('/css', express.static('css'))
|
|
app.use('/src', express.static('src'))
|
|
app.use('/external', express.static('external'))
|
|
app.use('/demo', express.static('demo'))
|
|
app.use('/', express.static('demo'))
|
|
|
|
app.listen(8000, () => console.log('Example app listening on port 8000!'))
|