auction-scrapper/config/static.ts
Vakula Uladimir 12f005e335 init
2025-10-17 11:27:52 +03:00

18 lines
428 B
TypeScript

import { defineConfig } from '@adonisjs/static'
/**
* Configuration options to tweak the static files middleware.
* The complete set of options are documented on the
* official documentation website.
*
* https://docs.adonisjs.com/guides/basics/static-file-server
*/
const staticServerConfig = defineConfig({
enabled: true,
etag: true,
lastModified: true,
dotFiles: 'ignore',
})
export default staticServerConfig