You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
470 B
18 lines
470 B
import { vitePreprocess } from '@sveltejs/kit/vite' |
|
import adapter from '@sveltejs/adapter-static' |
|
|
|
const config = { |
|
preprocess: vitePreprocess(), |
|
adapter: adapter({ |
|
// default options are shown. You can customize them as needed. |
|
pages: 'build', |
|
assets: 'build', |
|
fallback: null, // Set to null to avoid using a fallback HTML file |
|
}), |
|
prerender: { |
|
// Set this to false to disable prerendering |
|
default: false, |
|
}, |
|
} |
|
|
|
export default config
|
|
|