Skip to content

Commit

Permalink
Merge pull request #4 from littlesticksdev/next
Browse files Browse the repository at this point in the history
Upgrade to Astro v1.0 🎉
  • Loading branch information
jaydanurwin authored Aug 11, 2022
2 parents 49ab7bb + aeaf0fc commit fcdf921
Show file tree
Hide file tree
Showing 15 changed files with 2,516 additions and 2,716 deletions.
4 changes: 2 additions & 2 deletions components/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "odyssey-components",
"version": "0.0.1",
"version": "1.0.0",
"private": false,
"scripts": {
"start": "astro --root demo dev",
"build": "astro --root demo build",
"serve": "astro --root demo preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.17"
"astro": "^1.0.2"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "odyssey-theme",
"version": "0.0.1",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "astro dev",
Expand Down
5 changes: 3 additions & 2 deletions theme/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import { defineConfig } from 'astro/config';
import lit from '@astrojs/lit';
import sitemap from "@astrojs/sitemap";

import mdx from "@astrojs/mdx";

// https://astro.build/config
export default defineConfig({
site: 'https://odyssey-theme.littlesticks.dev/',
// Your public domain, e.g.: https://my-site.dev/. Used to generate sitemaps and canonical URLs.
sitemap: true,
// Generate sitemap (set to "false" to disable)
integrations: [lit(), sitemap()] // Add renderers to the config
integrations: [sitemap(), mdx()] // Add renderers to the config

});
Loading

0 comments on commit fcdf921

Please sign in to comment.