Add Tailwindcss as dev dependency (#5)
Simple PR adds tailwind as a dev dependencies, and updates layout by placing all app files under src/ closes #4 Reviewed-on: #5pull/16/head
parent
2a1bf7a0ff
commit
489a1a8a08
@ -0,0 +1,2 @@
|
||||
node_modules/
|
||||
dist/*.{html,js,css,ico}
|
@ -1,2 +1,2 @@
|
||||
FROM nginx
|
||||
COPY . /usr/share/nginx/html
|
||||
COPY ./src/index.html ./src/script.js ./src/main.css /usr/share/nginx/html
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,5 @@
|
||||
{
|
||||
"devDependencies": {
|
||||
"tailwindcss": "^3.4.9"
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 318 B |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{html,js}"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
Reference in New Issue