pull/1370/head
konnorrogers 2023-06-13 12:25:03 -04:00
rodzic 616a10bffa
commit 16dc988db6
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -10,7 +10,7 @@ import fs from 'fs/promises';
import getPort, { portNumbers } from 'get-port';
import ora from 'ora';
import util from 'util';
import * as path from "path"
import * as path from 'path';
const { serve } = commandLineArgs([{ name: 'serve', type: Boolean }]);
const outdir = 'dist';
@ -208,7 +208,7 @@ await nextTask(`Copying the build to "${sitedir}"`, async () => {
await deleteAsync(sitedir);
// We copy the CDN build because that has everything bundled.
await copy(cdndir, path.join(sitedir, "cdn"));
await copy(cdndir, path.join(sitedir, 'cdn'));
});
// Launch the dev server