Files
npmcdn/test/devserver.ts
2026-01-04 20:47:43 +00:00

10 lines
310 B
TypeScript

import { UiPublicServer } from '../ts/index.js';
export const defaultPublicServer = new UiPublicServer({
port: 3000,
packageBaseDirectory: './ts',
npmRegistryUrl: 'https://registry.npmjs.org',
allowedPackages: ['@pushrocks/smartfile', '@pushrocks/smarturl', '@pushrocks/notthere'],
mode: 'dev',
});