Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache .next/cache/ between builds #63

Closed
ehmicky opened this issue Nov 23, 2020 · 1 comment · Fixed by #185
Closed

Cache .next/cache/ between builds #63

ehmicky opened this issue Nov 23, 2020 · 1 comment · Fixed by #185
Labels
proj/non/next-on-netlify-enterprise type: feature code contributing to the implementation of a feature and/or user facing functionality

Comments

@ehmicky
Copy link

ehmicky commented Nov 23, 2020

We could use the cache utility to cache .next/cache between builds, to speed up Next.js builds.

An existing plugin is already doing it (source code). Since that plugin allows users to customize the path to .next/cache/, it could still be useful for the few users who need that. @lindsaylevine Do you think using a custom file path for .next/ is common?

Without that case in mind, adding this would probably look like this:

const CACHE_DIR = '.next/cache/'
const BUILD_MANIFEST = '.next/build-manifest.json'

module.exports = {
	async onPreBuild({ utils }) {
		if (await utils.cache.restore(CACHE_DIR)) {
			console.log('Next.js cache restored.')
		} else {
			console.log('No Next.js cache to restore')
		}
	},
	async onPostBuild({ utils }) {
		if (await utils.cache.save(CACHE_DIR, { digests: [BUILD_MANIFEST] })) {
			console.log('Next.js cache saved.')
		} else {
			console.log('No Next.js cache to save.')
		}
	}
}

What do you think?

@ehmicky ehmicky added type: feature code contributing to the implementation of a feature and/or user facing functionality proj/non/next-on-netlify-enterprise labels Nov 23, 2020
@lindsaylevine
Copy link

yes this would be an excellent addition after everything else is in place!!

serhalp pushed a commit that referenced this issue Apr 5, 2024
* update files array

* testing

* remove lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
proj/non/next-on-netlify-enterprise type: feature code contributing to the implementation of a feature and/or user facing functionality
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants