diff --git a/Makefile b/Makefile index 2d35f5e..0985d1c 100644 --- a/Makefile +++ b/Makefile @@ -7,12 +7,13 @@ POD_OPTIONS_TEMPLATE = \ -w /app \ -v $(PWD):/app:z \ -v $(PROJ)_modules:/app/node_modules:z \ + --publish 5173:5173 \ node:alpine dev: CONTAINER_TAG = dev dev: - podman run $(POD_OPTIONS_TEMPLATE) npm run + podman run $(POD_OPTIONS_TEMPLATE) npm run dev -- --host sh: CONTAINER_TAG = sh sh: - podman run $(POD_OPTIONS_TEMPLATE) sh \ No newline at end of file + podman run $(POD_OPTIONS_TEMPLATE) sh diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 5982b0a..3c622ea 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,2 +1,2 @@ -
Visit kit.svelte.dev to read the documentation
diff --git a/tailwind.config.js b/tailwind.config.js index 68f2b3a..b719eda 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,6 @@ /** @type {import('tailwindcss').Config} */ export default { - content: ['./src/**/{*.{html,ts,js,svelte}'], + content: ['./src/**/*.{html,ts,js,svelte}'], theme: { extend: {}, },