astro.accords-library.com/astro.config.ts

27 lines
502 B
TypeScript
Raw Normal View History

2023-09-04 20:17:28 +00:00
import icon from "astro-icon";
2023-09-03 18:25:51 +00:00
import { defineConfig } from "astro/config";
2023-09-11 19:14:43 +00:00
import node from "@astrojs/node";
2023-09-03 18:25:51 +00:00
// https://astro.build/config
export default defineConfig({
output: "server",
srcDir: "./src",
publicDir: "./public",
outDir: "./dist",
adapter: node({
mode: "standalone",
}),
2023-09-04 20:17:28 +00:00
integrations: [
icon({
include: {
"material-symbols": ["*"], // Loads entire Material Design Icon set
},
}),
],
2023-09-11 19:14:43 +00:00
2023-09-03 18:25:51 +00:00
server: {
2023-09-11 19:14:43 +00:00
port: 12499,
host: true,
2023-09-03 18:25:51 +00:00
},
});