X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/f088a6594c15951b85a56129944afa51a62dc765..2ec82213d1dafb17b7a445451fe6e49cff632475:/svelte.config.cjs diff --git a/svelte.config.cjs b/svelte.config.cjs index cb51cef..aa6e765 100644 --- a/svelte.config.cjs +++ b/svelte.config.cjs @@ -1,27 +1,27 @@ const { resolve } = require('path'); -const node = require('@sveltejs/adapter-node'); -const pkg = require('./package.json'); +const Node = require('@sveltejs/adapter-node'); +const Pkg = require('./package.json'); /** @type {import('@sveltejs/kit').Config} */ module.exports = { - kit: { - // By default, `npm run build` will create a standard Node app. - // You can create optimized builds for different platforms by - // specifying a different adapter - adapter: node(), + kit: { + // By default, `npm run build` will create a standard Node app. + // You can create optimized builds for different platforms by + // specifying a different adapter + adapter: Node(), - // hydrate the
element in src/app.html - target: '#forum', + // hydrate the
element in src/app.html + target: '#forum', - vite: { - ssr: { - noExternal: Object.keys(pkg.dependencies || {}) - }, - resolve: { - alias: { - $: resolve('src') - } - } - } - } + vite: { + ssr: { + noExternal: Object.keys(Pkg.dependencies || {}) + }, + resolve: { + alias: { + $: resolve('src') + } + } + } + } };