tuned header of recipe lists for smartphones
This commit is contained in:
parent
5c3c74b32e
commit
686eddbaee
24 changed files with 2563 additions and 29 deletions
|
|
@ -1,6 +1,13 @@
|
|||
import { defineConfig } from "vite"
|
||||
import { defineConfig, loadEnv } from "vite"
|
||||
import react from "@vitejs/plugin-react"
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
export default defineConfig(({ mode }) => {
|
||||
const env = loadEnv(mode, process.cwd(), "")
|
||||
return {
|
||||
plugins: [react()],
|
||||
server: {
|
||||
host: env.VITE_HOST || "localhost",
|
||||
port: Number(env.VITE_PORT) || 5173,
|
||||
},
|
||||
}
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue