Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 7 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,34 +1,18 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.yarn

# testing
/coverage

# next.js
/.next/
/out/

# production
/build
# Solid Start
/dist
.solid
.vinxi
.output
app.config.timestamp_*.js

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# build artifacts
/public/atom.xml
/public/json.json
.netlify
2 changes: 0 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# next.js
/.next
/public
16 changes: 16 additions & 0 deletions app.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { defineConfig } from '@solidjs/start/config';

// https://docs.solidjs.com/solid-start/reference/entrypoints/app-config

export default defineConfig({
ssr: true,
// https://nitro.unjs.io/config
// https://vinxi.vercel.app/guide/getting-started.html
server: {
preset: 'static',
prerender: {
crawlLinks: true,
failOnError: true,
},
},
});
85 changes: 0 additions & 85 deletions components/layout/layout.tsx

This file was deleted.

4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build]
command = "yarn build && yarn next export"
publish = "out"
command = "yarn build"
publish = "./.output/public"
5 changes: 0 additions & 5 deletions next-env.d.ts

This file was deleted.

41 changes: 20 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "maxwell-bursons-blog",
"type": "module",
"description": "Blog of Maxwell Burson",
"version": "1.0.0",
"author": "Maxwell Burson <maxwellburson@gmail.com>",
Expand All @@ -9,6 +10,7 @@
"engines": {
"node": "20"
},
"packageManager": "yarn@4.4.0",
"homepage": "https://maxburson.com",
"license": "MIT",
"main": "n/a",
Expand All @@ -17,10 +19,10 @@
"url": "git+https://github.com/maxburson/blog.git"
},
"scripts": {
"dev": "next",
"build": "yarn generateFeeds && next build",
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"format": "prettier --write --ignore-unknown .",
"start": "next start",
"typecheck": "tsc",
"generateFeeds": "ts-node ./scripts/generate-feeds.ts"
},
Expand All @@ -33,29 +35,26 @@
"**/*": "prettier --write --ignore-unknown "
},
"dependencies": {
"date-fns": "2.10.0",
"gray-matter": "4.0.2",
"next": "12",
"normalize.css": "^8.0.1",
"prismjs": "^1.25.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"typescript": "~4.5.0"
},
"devDependencies": {
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.14.1",
"@solidjs/start": "^1.0.6",
"@types/jest": "^25.2.2",
"@types/node": "22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/node": "20",
"date-fns": "2.10.0",
"feed": "^4.2.1",
"gatsby-remark-prismjs": "^3.10.0",
"gray-matter": "4.0.2",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"normalize.css": "^8.0.1",
"prettier": "2.2.1",
"prismjs": "^1.25.0",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"sass": "^1.32.2",
"ts-node": "^9.1.1"
},
"packageManager": "yarn@4.4.0"
"solid-js": "^1.8.18",
"ts-node": "^9.1.1",
"typescript": "~4.5.0",
"vinxi": "^0.4.1"
}
}
10 changes: 0 additions & 10 deletions pages/404.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions pages/_app.tsx

This file was deleted.

21 changes: 0 additions & 21 deletions pages/_document.tsx

This file was deleted.

58 changes: 0 additions & 58 deletions pages/index.tsx

This file was deleted.

Loading