contentz-tech/build

View on GitHub
src/getters/statics.ts

Summary

Maintainability
A
0 mins
Test Coverage
import glob from "fast-glob";

async function statics(): Promise<string[]> {
  return await glob("./static/**/*");
}

export { statics };