Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/assets in build #342

Merged
merged 11 commits into from
Jul 17, 2024
Merged
2 changes: 1 addition & 1 deletion .github/workflows/automated-testing-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
# browser: chrome
browser: ${{ matrix.browsers }}
record: false
spec: cypress/e2e/*
spec: cypress/e2e/spec.cy.js
config-file: cypress.config.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
56 changes: 1 addition & 55 deletions roadside-forms-frontend/frontend_web_app/src/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,61 +18,7 @@ clientsClaim();
// Their URLs are injected into the manifest variable below.
// This variable must be present somewhere in your service worker file,
// even if you decide not to use precaching.
const manifest = (self.__WB_MANIFEST || []).concat([
// {
// url: "/roadside-forms/",
// revision: null,
// },
// {
// url: "/roadside-forms/static/media/BCID_RoadSafetyBC_logo_transparent.png",
// revision: null,
// },
{
url: "/roadside-forms/assets/libre-barcode-39-v19-latin-regular.woff",
revision: null,
},
{
url: "/roadside-forms/assets/MV2634E_082023_driver.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2634E_082023_icbc.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2634E_082023_ilo.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2721_202404_appeal.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2721_202404.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2722_202404_Incident_Details.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2722_202404.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2906E_082023_driver.png",
revision: null,
},
{
url: "/roadside-forms/assets/MV2906E_082023_icbc.png",
revision: null,
},
// {
// url: "/roadside-forms/createEvent",
// revision: null,
// },
// Add other assets to cache here
]);
const manifest = (self.__WB_MANIFEST || [])
precacheAndRoute(manifest);

// Set up App Shell-style routing, so that all navigation requests
Expand Down
Loading