2023-04-30 23:21:32 +09:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [react()],
|
2024-03-16 15:03:20 +09:00
|
|
|
define: {
|
|
|
|
VITE_BUILD_DATE: JSON.stringify(new Date().toLocaleString()),
|
|
|
|
},
|
2023-04-30 23:21:32 +09:00
|
|
|
})
|