diff --git a/index.html b/index.html index fd18ae9..3915ced 100644 --- a/index.html +++ b/index.html @@ -7,10 +7,10 @@ remyhunt/d3-starter -
+
hello world
- + diff --git a/postcss.config.cjs b/postcss.config.cjs new file mode 100644 index 0000000..e2dc478 --- /dev/null +++ b/postcss.config.cjs @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + } +} \ No newline at end of file diff --git a/src/main.ts b/src/main.ts index 6876386..7c54202 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,3 +1,2 @@ -// import d3 -import * as d3 from 'd3'; +// import * as d3 from 'd3'; diff --git a/src/style.css b/src/style.css index 4ff5bf5..4620aef 100644 --- a/src/style.css +++ b/src/style.css @@ -3,5 +3,5 @@ @tailwind utilities; html { - @apply bg-gray-500; -} + @apply bg-red-100; +} \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 89a305e..da3ce7a 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,9 +1,6 @@ /** @type {import('tailwindcss').Config} */ -export default { - content: [ - "./index.html", - "./src/**/*.{js,ts,jsx,tsx}", - ], +module.exports = { + content: ["index.html", "./src/**/*.{html,js,ts}"], theme: { extend: {}, },