mirror of
https://github.com/mat-1/matdoesdev.git
synced 2025-08-02 14:46:04 +00:00
31 lines
640 B
JavaScript
31 lines
640 B
JavaScript
import staticAdapter from '@sveltejs/adapter-static'
|
|
import preprocess from 'svelte-preprocess'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: preprocess(),
|
|
|
|
kit: {
|
|
adapter: staticAdapter({}),
|
|
|
|
vite: {
|
|
build: {
|
|
target: 'es2020',
|
|
},
|
|
// if the user is on replit or gitpod, use a secure websocket
|
|
server:
|
|
process.env.REPL_ID || process.env.GITPOD_WORKSPACE_ID
|
|
? {
|
|
hmr: {
|
|
protocol: 'wss',
|
|
port: 443,
|
|
},
|
|
}
|
|
: {},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default config
|