diff options
Diffstat (limited to 'packages/create-astro/src')
-rw-r--r-- | packages/create-astro/src/config.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/create-astro/src/config.ts b/packages/create-astro/src/config.ts index 40e6653a0..31b7acc20 100644 --- a/packages/create-astro/src/config.ts +++ b/packages/create-astro/src/config.ts @@ -10,8 +10,9 @@ export const createConfig = ({ renderers }: { renderers: string[] }) => { sitemap: true, // Generate sitemap (set to "false" to disable) }, devOptions: { - // port: 3000, // The port to run the dev server on. - // tailwindConfig: '', // Path to tailwind.config.js if used, e.g. './tailwind.config.js' + // hostname: 'localhost', // The hostname to run the dev server on. + // port: 3000, // The port to run the dev server on. + // tailwindConfig: '', // Path to tailwind.config.js if used, e.g. './tailwind.config.js' },`, ` renderers: ${JSON.stringify(renderers, undefined, 2) .split('\n') |