mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00

* 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>
22 lines
496 B
JavaScript
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
|