browsertrix/frontend/config/webpack/shoelace.js
sua yoo 573d8ca316
devex: Document workflow table components (#2558)
- Documents the following components in Storybook:
  - `btrix-data-table`
  - `btrix-table`
  - `btrix-crawl-log-table`
  - `btrix-custom-behaviors-table`
  - `btrix-link-selector-table`
  - `btrix-queue-exclusion-table`
  - `btrix-queue-exclusion-form`
- Refactors `btrix-table` and subcomponents to simplify CSS properties
- Fixes crawl exclusion table delete button not rendering
- Fixes Shoelace assets not loading Storybook
2025-04-23 19:31:34 -07:00

15 lines
307 B
JavaScript

/* eslint-env node */
const path = require("path");
const shoelaceAssetsSrcPath = path.resolve(
__dirname,
"../..",
"node_modules/@shoelace-style/shoelace/dist/assets",
);
const shoelaceAssetsPublicPath = "shoelace/assets";
module.exports = {
shoelaceAssetsSrcPath,
shoelaceAssetsPublicPath,
};