Created a basic home page with links, a header with a link to home, some basic reusable CSS classes. ref: N25B-38
13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
css: {
|
|
modules: {
|
|
localsConvention: "camelCase",
|
|
}
|
|
},
|
|
})
|