konoplayer/apps/playground/rsbuild.config.ts
2025-03-18 06:21:27 +08:00

19 lines
288 B
TypeScript

import { defineConfig } from '@rsbuild/core';
export default defineConfig({
html: {
title: 'Konoplayer Playground',
template: './src/index.html',
},
source: {
decorators: {
version: 'legacy',
},
},
server: {
host: '0.0.0.0',
port: 5000,
},
});