mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 10:35:10 +00:00
14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
publicRuntimeConfig: {
|
|
modifiedDate: new Date().toISOString(),
|
|
modifiedYear: new Date().getFullYear(),
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|