KK
Size: a a a
KK
❌
A
sass <sass options> input.scss:output.css
AP
AP
❌
PM
<script>
import Viewpoint from ‘svelte-viewpoint’;
const themes = {
light: () => import(‘./LightTheme.svelte’),
dark: () => import(‘./DarkTheme.svelte’),
};
let themeKey = ‘light’;
$: theme = themes[themeKey];
</script>
<input
type=“radio”
value=“light”
bind:goup={themeKey}
>
<input
type=“radio”
value=“dark”
bind:goup={themeKey}
>
<Viewpoint component={theme}>
<App />
</Viewpoint>
AP
AP
PM
PM
A
❌
KK
The value for kit.vite.build.rollupOptions.output specified in svelte.config.js has been ignored. This option
is controlled by SvelteKit.
AP
AP
❌
❌
AP