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