3ddd3594f0
* Absorb Snowpack config inside Astro * Add basic README * Format tests * Update esbuild * Format tests
15 lines
233 B
JavaScript
15 lines
233 B
JavaScript
export default {
|
|
projectRoot: '.',
|
|
astroRoot: './astro',
|
|
dist: './_site',
|
|
extensions: {
|
|
'.jsx': 'preact',
|
|
},
|
|
snowpack: {
|
|
optimize: {
|
|
bundle: false,
|
|
minify: true,
|
|
target: 'es2018',
|
|
},
|
|
},
|
|
};
|