Files
bitcoin-logo/vite.config.js
Grzegorz Kucmierz 2b6e9077c7
All checks were successful
Deploy to Production / deploy (push) Successful in 4s
feat: implement customizable Bitcoin logo with 3D rotation and interactive controls
2026-03-03 09:12:50 +00:00

16 lines
334 B
JavaScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
host: true,
allowedHosts: true,
headers: {
'Cache-Control': 'no-store, no-cache, must-revalidate, proxy-revalidate',
'Pragma': 'no-cache',
'Expires': '0',
}
}
})