-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump caniuse db https://github.com/browserslist/browserslist#browsers-data-updating * fix sed command to work with both GNU and MacOS sed The sed command which replaces the markdown import in the api.js file was not working on MacOS because the `-i` flag requires an argument with the backup file extension. This commit adds the `.bak` extension to the sed command to make it work on both GNU and MacOS sed (and then removes the backup file). * Update to next.js 14 - "next build export" is replaced with an output config option https://nextjs.org/docs/app/building-your-application/deploying/static-exports - "next start" is not compatible with static exports and has been removed from the package scripts - blog rss feed is now generated to out/blog/index.xml instead of _next/static/feed.xml to work with the default output and the redirect in netlify.toml has been reversed so that rss feed requests are redirected to the new location * Upgrade to nextjs 15 - Use turbopack instead of webpack - User typescript instead of js for next config - silence deprecation warnings on bulma sass problems. Bulma 1.0.2 breaks a bunch of things that worked in 0.8 so it's difficult to update to without changing how the site looks.
- Loading branch information
Showing
9 changed files
with
951 additions
and
329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { NextConfig } from "next"; | ||
|
||
const nextConfig: NextConfig = { | ||
output: "export", | ||
sassOptions: { | ||
// bulma 0.8 has a bunch of future deprecations, but the next version breaks a lot of stuff | ||
// so we ignore the deprecation warnings here. These | ||
silenceDeprecations: [ | ||
"color-functions", | ||
"import", | ||
"global-builtin", | ||
"legacy-js-api", | ||
"slash-div", | ||
], | ||
quietDeps: true, | ||
}, | ||
}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.