vite.init.ts 193 B

12345678
  1. import { existsSync, readFileSync, writeFileSync } from 'fs'
  2. const app = 'src/App.vue'
  3. const example = 'app.example.vue'
  4. if (!existsSync(app)) {
  5. writeFileSync(app, readFileSync(example))
  6. }