pockethost/packages/pockethost.io/svelte.config.js
Brewhouse Digital fa283d70cb
Added new Navbar, Login/Register pages, and new Components (#5)
* Added new Navbar, Login/Register pages, and new Components

* Db logic fix

* Fixed instance page

* Default provisioning status

* minor dashboard fixes

* Form error handling

* Provisioning status fix

* github action

* Enhanced home page signup flow

* Whitespace fixes

* Added responsive CSS for the dashboard

* Merged all the latest PRs and added a new MediaQuery component and mobile nav

* Removed the homepage animation on mobile but left for tablet sizes and up. Also improved the navigation bar for mobile use

Co-authored-by: Brewhouse Digital <zach@brewhouse.digital>
Co-authored-by: Ben Allfree <ben@benallfree.com>
2022-10-15 08:36:15 -07:00

22 lines
496 B
JavaScript

import adapter from '@sveltejs/adapter-node'
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: adapter({ out: 'dist-server' }),
alias: {
$components: './src/components',
$util: './src/util',
$src: './src'
}
},
target: '#svelte'
}
export default config