2026-01-04 20:47:43 +00:00
|
|
|
import { UiPublicServer } from '../ts/index.js';
|
2022-01-06 01:20:03 +01:00
|
|
|
|
|
|
|
|
export const defaultPublicServer = new UiPublicServer({
|
|
|
|
|
port: 3000,
|
|
|
|
|
packageBaseDirectory: './ts',
|
|
|
|
|
npmRegistryUrl: 'https://registry.npmjs.org',
|
|
|
|
|
allowedPackages: ['@pushrocks/smartfile', '@pushrocks/smarturl', '@pushrocks/notthere'],
|
|
|
|
|
mode: 'dev',
|
|
|
|
|
});
|