All checks were successful
Deploy to Production / deploy (push) Successful in 4s
16 lines
334 B
JavaScript
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',
|
|
}
|
|
}
|
|
})
|