forked from spacebar/SplatNet
start work on v2
This commit is contained in:
parent
8531693c2e
commit
c5fb8618df
2013 changed files with 16939 additions and 46092 deletions
18
astro.config.mjs
Normal file
18
astro.config.mjs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
import node from '@astrojs/node';
|
||||
|
||||
import db from '@astrojs/db';
|
||||
|
||||
export default defineConfig({
|
||||
output: 'server',
|
||||
adapter: node({ mode: 'standalone' }),
|
||||
|
||||
vite: {
|
||||
build: {
|
||||
target: 'es2015',
|
||||
cssTarget: 'chrome61',
|
||||
},
|
||||
},
|
||||
|
||||
integrations: [],
|
||||
});
|
||||
Loading…
Reference in a new issue