2024-02-02 04:00:28 +00:00
|
|
|
#!/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');
|
2025-02-13 20:56:44 +11:00
|
|
|
fs.cpSync(wellKnownPath, path.join(__dirname, '../apps/remix/public/.well-known'), {
|
2024-02-02 04:00:28 +00:00
|
|
|
recursive: true,
|
|
|
|
|
});
|