@netlify/build-info
Version:
Build info utility
23 lines • 692 B
JavaScript
import { BaseFramework, Category } from './framework.js';
export class ReactStatic extends BaseFramework {
id = 'react-static';
name = 'React Static';
npmDependencies = ['react-static'];
configFiles = ['static.config.js'];
category = Category.SSG;
dev = {
command: 'react-static start',
port: 3000,
pollingStrategies: [{ name: 'TCP' }],
};
build = {
command: 'react-static build',
directory: 'dist',
};
logo = {
default: '/logos/react-static/default.png',
light: '/logos/react-static/default.png',
dark: '/logos/react-static/default.png',
};
}
//# sourceMappingURL=react-static.js.map