Skip to content

Commit

Permalink
ci: fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Jan 3, 2025
1 parent ef45a10 commit 43b663b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './build/client'
path: './dist/'

deploy:
needs: build
Expand Down
10 changes: 5 additions & 5 deletions apps/client/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable import/no-extraneous-dependencies */
import { reactRouter } from '@react-router/dev/vite';
// import { reactRouter } from '@react-router/dev/vite';
// import autoprefixer from 'autoprefixer';
import tailwindcss from 'tailwindcss';
import tsconfigPaths from 'vite-tsconfig-paths';
// import tailwindcss from 'tailwindcss';
// import tsconfigPaths from 'vite-tsconfig-paths';

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
Expand Down Expand Up @@ -32,8 +32,8 @@ export default defineConfig({
},
}),
vanillaExtractPlugin(),
reactRouter(),
tsconfigPaths(),
// reactRouter(),
// tsconfigPaths(),
VitePWA(),
],
define: {
Expand Down
1 change: 1 addition & 0 deletions apps/docs/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,

/* Bundler mode */
"moduleResolution": "bundler",
Expand Down
5 changes: 3 additions & 2 deletions apps/docs/tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"target": "ESNext",
"lib": ["ESNext"],
"module": "ESNext",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,

/* Bundler mode */
"moduleResolution": "bundler",
Expand Down

0 comments on commit 43b663b

Please sign in to comment.