* style: revive -^> resuscitate * build(adapter): we can just use adapter-auto * fix(subspecies): allows for custom subspecies names * chore(+page): file input is stateful
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
import adapter from '@sveltejs/adapter-auto';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|