0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/examples/snowpack/astro.config.mjs

12 lines
217 B
JavaScript
Raw Normal View History

export default {
projectRoot: '.',
2021-06-01 10:57:12 -05:00
pages: './src/pages',
dist: './dist',
public: './public',
renderers: [
'@astrojs/renderer-vue',
'@astrojs/renderer-svelte',
2021-07-19 23:07:49 -05:00
'@astrojs/renderer-preact',
],
};