mirror of
https://github.com/kevinnlsamuel/rainbowcroissant.git
synced 2025-12-06 10:06:01 +05:30
make stuff actually work
This commit is contained in:
5
Makefile
5
Makefile
@@ -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
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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: {},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user