Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 273 Bytes
ac02d1c |
1 2 3 4 5 6 7 8 9 10 11 12 |
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,
}) |