Skip to content

Commit

Permalink
sync with frontend owner
Browse files Browse the repository at this point in the history
  • Loading branch information
cf2013 committed Oct 21, 2023
1 parent 6f0886e commit fa56649
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 27 deletions.
17 changes: 9 additions & 8 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { defineConfig } from 'astro/config';
import compress from 'astro-compress';
import mdx from '@astrojs/mdx';
import tailwind from '@astrojs/tailwind';

import react from "@astrojs/react";
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import tailwind from '@astrojs/tailwind'
import compress from 'astro-compress'

// https://astro.build/config
export default defineConfig({
integrations: [compress(), mdx(), tailwind(), react()]
});
compressHTML: true,
integrations: [mdx(), tailwind({
applyBaseStyles: false,
}), compress()],
})
25 changes: 6 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,24 @@
{
"name": "accessible-astro-starter",
"description": "An Accessible Starter Theme for Astro including several accessiblity features and tools to help you build faster.",
"version": "2.0.4",
"version": "3.0.0",
"author": "Mark Teekman",
"homepage": "https://accessible-astro.netlify.app/",
"engines": {
"node": ">=18.14.1"
},
"platform": {
"apiRuntime": "node:18"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/partytown": "^1.0.3",
"@astrojs/mdx": "^1.0.2",
"@astrojs/partytown": "^2.0.0",
"@astrojs/tailwind": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"accessible-astro-components": "^2.1.0",
"astro": "^3.0.5",
"accessible-astro-components": "^2.2.0",
"astro": "^3.0.10",
"astro-compress": "^2.0.6",
"astro-icon": "^0.7.3",
"eslint": "^8.33.0",
"eslint-plugin-astro": "^0.23.0",
Expand All @@ -34,13 +29,5 @@
"sass": "^1.49.9",
"svgo": "^2.8.0",
"tailwindcss": "^3.2.7"
},
"dependencies": {
"@astrojs/react": "^3.0.0",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"astro-compress": "^2.0.15",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}

0 comments on commit fa56649

Please sign in to comment.