Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
import express from 'express'; | |
const assets = express.static('/data'); | |
const configureServer = (server) => { | |
server.middlewares.use(assets); | |
} | |
export const customPlugin = () => ({ | |
name: "custom-plugin", | |
configureServer, | |
configurePreviewServer: configureServer, | |
}) |