Initial design based off original website, some things still to do
This commit is contained in:
@@ -1,5 +1,38 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import { defineConfig } from "astro/config";
|
||||
import path from "path";
|
||||
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
|
||||
import icon from "astro-icon";
|
||||
|
||||
import mdx from "@astrojs/mdx";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({});
|
||||
export default defineConfig({
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": path.resolve("./src"),
|
||||
"@layouts": path.resolve("./src/layouts"),
|
||||
"@components": path.resolve("./src/components"),
|
||||
"@assets": path.resolve("./src/assets"),
|
||||
"@lib": path.resolve("./src/lib"),
|
||||
"@data": path.resolve("./src/data")
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
integrations: [icon(), mdx()],
|
||||
|
||||
site: "https://www.nathancummins.com.au",
|
||||
|
||||
trailingSlash: "always",
|
||||
|
||||
image: {
|
||||
responsiveStyles: true
|
||||
},
|
||||
|
||||
output: "static"
|
||||
});
|
||||
|
Reference in New Issue
Block a user