daisyui
This commit is contained in:
		@@ -6,6 +6,7 @@
 | 
			
		||||
		<meta name="theme-color" content="#000000" />
 | 
			
		||||
		<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
 | 
			
		||||
		<title>Solid App</title>
 | 
			
		||||
		<link href="/src/styles/styles.css" rel="stylesheet" />
 | 
			
		||||
	</head>
 | 
			
		||||
	<body>
 | 
			
		||||
		<noscript>You need to enable JavaScript to run this app.</noscript>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1876
									
								
								Frontend/package-lock.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										1876
									
								
								Frontend/package-lock.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -3,6 +3,7 @@
 | 
			
		||||
	"version": "1.0.0",
 | 
			
		||||
	"main": "index.ts",
 | 
			
		||||
	"license": "MIT",
 | 
			
		||||
	"type": "module",
 | 
			
		||||
	"scripts": {
 | 
			
		||||
		"dev": "vite",
 | 
			
		||||
		"build": "vite build"
 | 
			
		||||
@@ -15,6 +16,9 @@
 | 
			
		||||
		"vite-plugin-solid": "^2.11.8"
 | 
			
		||||
	},
 | 
			
		||||
	"dependencies": {
 | 
			
		||||
		"solid-js": "^1.9.9"
 | 
			
		||||
		"@tailwindcss/vite": "^4.1.13",
 | 
			
		||||
		"daisyui": "^5.1.7",
 | 
			
		||||
		"solid-js": "^1.9.9",
 | 
			
		||||
		"tailwindcss": "^4.1.13"
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,12 +1,13 @@
 | 
			
		||||
import { defineConfig } from "vite";
 | 
			
		||||
import solidPlugin from "vite-plugin-solid";
 | 
			
		||||
import tailwindcss from "@tailwindcss/vite";
 | 
			
		||||
import { env } from "process";
 | 
			
		||||
 | 
			
		||||
const target = env.BACKEND_URL ?? "http://localhost:5084/"; //"https://localhost:7192/";
 | 
			
		||||
console.log("vite backend:", target);
 | 
			
		||||
 | 
			
		||||
export default defineConfig({
 | 
			
		||||
	plugins: [solidPlugin()],
 | 
			
		||||
	plugins: [solidPlugin(), tailwindcss()],
 | 
			
		||||
	server: {
 | 
			
		||||
		port: 3000,
 | 
			
		||||
		proxy: {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user