update layout

This commit is contained in:
Kenta420 2024-01-24 11:41:58 +07:00
parent 84f18b6141
commit 725d41f61f
17 changed files with 1859 additions and 408 deletions

View file

@ -1,3 +1,4 @@
import path from 'node:path'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
@ -5,6 +6,11 @@ import react from '@vitejs/plugin-react'
export default defineConfig({
envPrefix: 'TAOBIN_RECIPE_MANAGER_',
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
build: {
outDir: 'dist-web'
},