Skip to content

Commit 5e1b482

Browse files
Merge pull request #183 from netlify-templates/tb/deved-130
removed daisyui
2 parents f8b333c + 8c543b6 commit 5e1b482

24 files changed

+1995
-2580
lines changed

.vscode/settings.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"source.fixAll.eslint": "explicit"
66
},
77
"[javascript]": {
8-
"editor.defaultFormatter": "esbenp.prettier-vscode",
9-
"editor.formatOnSave": true
8+
"editor.defaultFormatter": "esbenp.prettier-vscode"
109
},
1110
"[yaml]": {
1211
"editor.defaultFormatter": "esbenp.prettier-vscode",
@@ -22,6 +21,6 @@
2221
},
2322
"typescript.tsdk": "node_modules/typescript/lib",
2423
"files.associations": {
25-
"*.css": "tailwindcss",
24+
"*.css": "tailwindcss"
2625
}
2726
}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Live Demo](https://astro-platform-starter.netlify.app/)
44

5-
A modern starter based on Astro.js, Tailwind, daisyUI, and [Netlify Core Primitives](https://docs.netlify.com/core/overview/#develop) (Edge Functions, Image CDN, Blob Store).
5+
A modern starter based on Astro.js, Tailwind, and [Netlify Core Primitives](https://docs.netlify.com/core/overview/#develop) (Edge Functions, Image CDN, Blob Store).
66

77
## Astro Commands
88

@@ -23,9 +23,9 @@ All commands are run from the root of the project, from a terminal:
2323

2424
## Developing Locally
2525

26-
| Prerequisites |
27-
| :------------------------ |
28-
| [Node.js](https://nodejs.org/) v18.14+. |
26+
| Prerequisites |
27+
| :--------------------------------------------------------------------------- |
28+
| [Node.js](https://nodejs.org/) v18.14+. |
2929
| (optional) [nvm](https://github.com/nvm-sh/nvm) for Node version management. |
3030

3131
1. Clone this repository, then run `npm install` in its root directory.

astro.config.mjs

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
import { defineConfig } from 'astro/config';
22
import netlify from '@astrojs/netlify';
33
import react from '@astrojs/react';
4-
import tailwind from '@astrojs/tailwind';
4+
import tailwindcss from '@tailwindcss/vite';
55

66
// https://astro.build/config
77
export default defineConfig({
8-
integrations: [
9-
react(),
10-
tailwind({
11-
applyBaseStyles: false
12-
})
13-
],
14-
output: 'hybrid',
8+
vite: {
9+
plugins: [tailwindcss()]
10+
},
11+
integrations: [react()],
1512
adapter: netlify()
1613
});

0 commit comments

Comments
 (0)