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