Skip to content

Commit

Permalink
Update base url
Browse files Browse the repository at this point in the history
  • Loading branch information
ylfyt committed Sep 29, 2023
1 parent 9fce4ca commit 25ed4c6
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';

// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
})
plugins: [svelte()],
server: {
port: 3000,
host: '0.0.0.0',
},
base: '/pdf-splitter',
});

0 comments on commit 25ed4c6

Please sign in to comment.