SSL certificates, more styles improvements and sharing WIP

This commit is contained in:
2025-02-21 21:08:55 +01:00
parent 72777c44d5
commit 1102b4d770
14 changed files with 474 additions and 23 deletions
+6 -2
View File
@@ -1,10 +1,14 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
import vitesTSConfigPaths from 'vite-tsconfig-paths';
import mkcert from 'vite-plugin-mkcert';
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), vitesTSConfigPaths()],
plugins: [
react(),
vitesTSConfigPaths(),
mkcert()
],
server: {
port: 3000,
},