Spaces:
Runtime error
Runtime error
| import adapter from '@sveltejs/adapter-static'; | |
| import preprocess from 'svelte-preprocess'; | |
| const dev = process.env.NODE_ENV === 'development'; | |
| console.log('dev', dev); | |
| /** @type {import('@sveltejs/kit').Config} */ | |
| const config = { | |
| // Consult https://github.com/sveltejs/svelte-preprocess | |
| // for more information about preprocessors | |
| preprocess: preprocess({ | |
| postcss: true | |
| }), | |
| kit: { | |
| paths: { | |
| base: dev ? '/static' : '/embed/huggingface-projects/wordalle/static', | |
| }, | |
| adapter: adapter({ | |
| pages: 'build', | |
| assets: 'build', | |
| fallback: null, | |
| precompress: false | |
| }), | |
| prerender: { | |
| default: true | |
| } | |
| } | |
| }; | |
| export default config; | |