mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
13 lines
359 B
JavaScript
13 lines
359 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const wellKnownPath = path.join(__dirname, '../.well-known');
|
|
|
|
console.log('Copying .well-known/ contents to apps');
|
|
fs.cpSync(wellKnownPath, path.join(__dirname, '../apps/remix/public/.well-known'), {
|
|
recursive: true,
|
|
});
|