8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
const Path = require('path');
|
|
const FileSystem = require('fs-extra');
|
|
|
|
async function copyAssets() {
|
|
console.log('Static assets are now handled by Vite from src/renderer/public');
|
|
}
|
|
|
|
module.exports = copyAssets; |