removed derived atom from async cookies atom (#259)

This commit is contained in:
Marco Piovanello
2025-02-04 19:04:19 +01:00
committed by GitHub
parent 1141903512
commit 65960fb560
5 changed files with 60 additions and 46 deletions

16
frontend/vite.config.mts Normal file
View File

@@ -0,0 +1,16 @@
import react from '@vitejs/plugin-react-swc'
import ViteYaml from '@modyfi/vite-plugin-yaml'
import { defineConfig } from 'vite'
export default defineConfig(() => {
return {
plugins: [
react(),
ViteYaml(),
],
base: '',
build: {
emptyOutDir: true,
}
}
})