mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-13 08:06:24 +08:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
import { copyFileSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
|
|
copyFileSync(
|
|
join(process.cwd(), 'pages-worker.mjs'),
|
|
join(process.cwd(), '.vitepress', 'dist', '_worker.js')
|
|
);
|