2023-09-11 05:49:56 +08:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
2023-09-11 06:14:54 +08:00
|
|
|
adapter: adapter({
|
|
|
|
fallback: 'index.html',
|
|
|
|
}),
|
2023-09-11 05:49:56 +08:00
|
|
|
alias: {
|
|
|
|
$icon: 'src/assets/fontawesome/light/*',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|