mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 22:37:32 +00:00
Allows clicking the URL to launch example app, this also allows some IDEs such as WebStorm to launch integrated debugger far more easily
11 lines
357 B
JavaScript
Executable File
11 lines
357 B
JavaScript
Executable File
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('/editor', express.static('editor'))
|
|
app.use('/', express.static('editor'))
|
|
|
|
app.listen(8000, () => console.log('Example app listening on http://127.0.0.1:8000!'))
|