16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
import { defineConfig } from 'vite';
|
|
import { qwikVite } from '@builder.io/qwik/optimizer';
|
|
import { qwikCity } from '@builder.io/qwik-city/vite';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig(() => {
|
|
return {
|
|
plugins: [qwikCity(), qwikVite(), tsconfigPaths()],
|
|
preview: {
|
|
headers: {
|
|
'Cache-Control': 'public, max-age=600',
|
|
},
|
|
},
|
|
};
|
|
});
|