Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 441 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 441 Bytes

Base path issue

npm install
npm run dev

open browser at http://localhost:3000/base/about and see 404

having that svelte.config.js jas kit.paths.base='/base'

/** @type {import('@sveltejs/kit').Config} */
const config = {
  kit: {
    // hydrate the <div id="svelte"> element in src/app.html
    target: '#svelte',

    paths: {
      base: '/base',
      assets: '',
    },
  },
};

export default config;