✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import { Bench } from 'tinybench'
|
|
import { fastUri } from '../index.js'
|
|
|
|
const {
|
|
equal: fastUriEqual,
|
|
parse: fastUriParse,
|
|
} = fastUri
|
|
|
|
const stringA = 'example://a/b/c/%7Bfoo%7D'
|
|
const stringB = 'eXAMPLE://a/./b/../b/%63/%7bfoo%7d'
|
|
|
|
const componentA = fastUriParse(stringA)
|
|
const componentB = fastUriParse(stringB)
|
|
|
|
const benchFastUri = new Bench({ name: 'fast-uri equal' })
|
|
|
|
benchFastUri.add('equal string with string', function () {
|
|
fastUriEqual(stringA, stringA)
|
|
})
|
|
|
|
benchFastUri.add('equal component with component', function () {
|
|
fastUriEqual(componentA, componentA)
|
|
})
|
|
|
|
benchFastUri.add('equal component with string', function () {
|
|
fastUriEqual(componentA, stringA)
|
|
})
|
|
|
|
benchFastUri.add('equal string with component', function () {
|
|
fastUriEqual(stringA, componentA)
|
|
})
|
|
|
|
benchFastUri.add('not equal string with string', function () {
|
|
fastUriEqual(stringA, stringB)
|
|
})
|
|
|
|
benchFastUri.add('not equal component with component', function () {
|
|
fastUriEqual(componentA, componentB)
|
|
})
|
|
|
|
benchFastUri.add('not equal component with string', function () {
|
|
fastUriEqual(componentA, stringB)
|
|
})
|
|
|
|
benchFastUri.add('not equal string with component', function () {
|
|
fastUriEqual(stringA, componentB)
|
|
})
|
|
|
|
await benchFastUri.run()
|
|
console.log(benchFastUri.name)
|
|
console.table(benchFastUri.table())
|