fix short story missing

This commit is contained in:
Wouter van Veelen
2025-12-20 02:21:40 +01:00
parent 87932f1934
commit d3081dfea3
2 changed files with 5 additions and 5 deletions

View File

@@ -1,12 +1,12 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vite.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [["babel-plugin-react-compiler"]],
plugins: [['babel-plugin-react-compiler']],
},
}),
],