moving orbits to directory

This commit is contained in:
Sheldan
2024-03-20 21:28:08 +01:00
parent ad8b454ea4
commit c9717fc037
9 changed files with 4 additions and 2 deletions

View File

@@ -29,10 +29,12 @@ jobs:
with: with:
node-version: 21 node-version: 21
cache: 'npm' cache: 'npm'
- name: Install dependencies - name: Orbits Install dependencies
run: npm install run: npm install
working-directory: orbits
- name: Build - name: Build
run: npx vite build run: npx vite build
working-directory: orbits
- name: Setup Pages - name: Setup Pages
uses: actions/configure-pages@v3 uses: actions/configure-pages@v3
- name: Upload artifact - name: Upload artifact

View File

@@ -4,6 +4,6 @@ export default defineConfig({
base: './', base: './',
root: 'src', root: 'src',
build: { build: {
outDir: '../dist' outDir: '../../dist/orbits'
} }
}) })