Revert changes

Because the navigation doesn't work with static builds...
This commit is contained in:
Santiago Lo Coco 2024-04-23 19:16:47 +02:00
parent 6aab746ba0
commit cfe884c4ea
9 changed files with 34 additions and 70 deletions

20
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Build
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: npm install
- name: Lint
run: npm run lint

View File

@ -1,27 +0,0 @@
name: Build and deploy
permissions:
contents: write
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install and Build
run: |
npm install
NODE_ENV=production npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ vite.config.ts.timestamp-*
/tailwind.css
*.svelte-kit
/.vite
/public

25
package-lock.json generated
View File

@ -16,7 +16,6 @@
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"svelte": "5.0.0-next.54",
"svelte-adapter-ghpages": "^0.2.2",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.4.1",
@ -754,15 +753,6 @@
"@sveltejs/kit": "^2.0.0"
}
},
"node_modules/@sveltejs/adapter-static": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.1.tgz",
"integrity": "sha512-6lMvf7xYEJ+oGeR5L8DFJJrowkefTK6ZgA4JiMqoClMkKq0s6yvsd3FZfCFvX1fQ0tpCD7fkuRVHsnUVgsHyNg==",
"dev": true,
"peerDependencies": {
"@sveltejs/kit": "^2.0.0"
}
},
"node_modules/@sveltejs/kit": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.7.tgz",
@ -2653,21 +2643,6 @@
"node": ">=18"
}
},
"node_modules/svelte-adapter-ghpages": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/svelte-adapter-ghpages/-/svelte-adapter-ghpages-0.2.2.tgz",
"integrity": "sha512-1eQFGK7UJ3qZbnv8mLvlUbRh0JtD8Mqp3LWRzwOfL+aL4y8SiGfcr+8P/iRQ69v+hOyC6cZ2cqB7o8g97ofWjA==",
"dev": true,
"dependencies": {
"@sveltejs/adapter-static": "^2.0.0 || ^3.0.0"
},
"funding": {
"url": "https://github.com/sponsors/ota-meshi"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0 || ^2.0.0"
}
},
"node_modules/svelte-check": {
"version": "3.6.9",
"resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.9.tgz",

View File

@ -20,7 +20,6 @@
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"svelte": "5.0.0-next.54",
"svelte-adapter-ghpages": "^0.2.2",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.4.1",

View File

@ -1 +0,0 @@
export const prerender = process.env.NODE_ENV === 'production' ? true : false;

View File

@ -1,4 +0,0 @@
<h1>404</h1>
<blockquote>
<p>Not Found</p>
</blockquote>

View File

View File

@ -1,5 +1,5 @@
import adapter from "@sveltejs/adapter-auto"
import adapterGhpages from "svelte-adapter-ghpages";
// import adapterGhpages from "svelte-adapter-ghpages";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"
/** @type {import('@sveltejs/kit').Config} */
@ -23,17 +23,18 @@ const config = {
// Use different adapters based on the environment.
// For GitHub Pages deployment, use svelte-adapter-ghpages.
// For local development, you can use a different adapter like @sveltejs/adapter-static or any other suitable one.
adapter: process.env.NODE_ENV === 'production' ? adapterGhpages({
pages: 'build',
assets: 'build',
fallback: null
}) : adapter(),
prerender: {
entries: []
},
paths: {
base: process.env.NODE_ENV === 'production' ? "/BreakOften" : "",
},
adapter: adapter()
// adapter: process.env.NODE_ENV === 'production' ? adapterGhpages({
// pages: 'build',
// assets: 'build',
// fallback: null
// }) : adapter(),
// prerender: {
// entries: []
// },
// paths: {
// base: process.env.NODE_ENV === 'production' ? "/BreakOften" : "",
// },
},
}