mirror of
https://github.com/LukeHagar/ui-development-kit.git
synced 2025-12-06 12:57:44 +00:00
12 lines
161 B
JavaScript
12 lines
161 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
const config = {
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
port: 3000,
|
|
strict: true
|
|
}
|
|
};
|
|
|
|
export default config;
|