This commit is contained in:
Tianpao
2025-07-01 09:19:58 +08:00
parent 56639731bb
commit fc20a736c4
5 changed files with 6320 additions and 0 deletions

9
rollup.config.js Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('rollup').RollupOptions} */
// ---cut---
export default {
input: 'dist/main.js',
output: {
file: 'bundle.js',
format: 'es'
}
};