mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 23:56:36 +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')
|
|
);
|