20 lines
338 B
JavaScript
20 lines
338 B
JavaScript
// @ts-check
|
|
|
|
export default function config() {
|
|
return {
|
|
optimizeDeps: {
|
|
exclude: ["@astropub/codecs", "imagetools-core", "sharp"],
|
|
},
|
|
ssr: {
|
|
external: [
|
|
"sharp",
|
|
"potrace",
|
|
"file-type",
|
|
"object-hash",
|
|
"find-cache-dir",
|
|
"@astropub/codecs",
|
|
],
|
|
},
|
|
};
|
|
}
|