This demo is useful to test in the real usage of the design system as a real user that will generate its own customized design tokens, implements the design system's components, etc ...
15 lines
251 B
TypeScript
15 lines
251 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
port: 3200,
|
|
hmr: {
|
|
port: 3201,
|
|
},
|
|
},
|
|
});
|