11 lines
167 B
JavaScript
11 lines
167 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
output: 'static',
|
|
vite: {
|
|
resolve: {
|
|
preserveSymlinks: true,
|
|
},
|
|
},
|
|
});
|