make stuff actually work

This commit is contained in:
2023-08-23 01:13:11 +05:30
parent 90d6b750c3
commit bbf88c314c
3 changed files with 5 additions and 4 deletions

View File

@@ -7,12 +7,13 @@ POD_OPTIONS_TEMPLATE = \
-w /app \ -w /app \
-v $(PWD):/app:z \ -v $(PWD):/app:z \
-v $(PROJ)_modules:/app/node_modules:z \ -v $(PROJ)_modules:/app/node_modules:z \
--publish 5173:5173 \
node:alpine node:alpine
dev: CONTAINER_TAG = dev dev: CONTAINER_TAG = dev
dev: dev:
podman run $(POD_OPTIONS_TEMPLATE) npm run podman run $(POD_OPTIONS_TEMPLATE) npm run dev -- --host
sh: CONTAINER_TAG = sh sh: CONTAINER_TAG = sh
sh: sh:
podman run $(POD_OPTIONS_TEMPLATE) sh podman run $(POD_OPTIONS_TEMPLATE) sh

View File

@@ -1,2 +1,2 @@
<h1>Welcome to SvelteKit</h1> <h1 class="text-3xl text-lime-600">Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p> <p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>

View File

@@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
content: ['./src/**/{*.{html,ts,js,svelte}'], content: ['./src/**/*.{html,ts,js,svelte}'],
theme: { theme: {
extend: {}, extend: {},
}, },